How do I display in Site Viewer multiple txsite/rxsite objects?
Afficher commentaires plus anciens
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?
Réponses (1)
Giancarlo Eder Guerra Padilla
le 31 Jan 2019
Use show for the two of them
TX = txsite;
RX = rxsite;
show(TX);
show(RX);
Catégories
En savoir plus sur Propagation and Channel Models dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!