How do I display in Site Viewer multiple txsite/rxsite objects?
Show older comments
I would like to display on the same window of Site Viewer two objects, one of type txsite and the other one rxsite. The code would be the following:
TX = txsite;
RX = rxsite;
show([TX RX]);
Unfortunately I get the error message: Error using horzcat The following error occurred converting from rxsite to txsite: Expected a string scalar or character vector for the parameter name.
Error in Lab03 (line 109) show([TX RX]);
I know that is possible to use an array of txsite or rxsite objects, but it seems impossible to used a mixed array. Is there any solution or workaround to this issue?
Answers (1)
Giancarlo Eder Guerra Padilla
on 31 Jan 2019
Use show for the two of them
TX = txsite;
RX = rxsite;
show(TX);
show(RX);
Categories
Find more on Propagation and Channel Models in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!