Filter löschen
Filter löschen

siteviewer object and visualization

12 Ansichten (letzte 30 Tage)
yazz.jazz
yazz.jazz am 21 Mär. 2021
Bearbeitet: Mann Baidi am 29 Feb. 2024
I want to use siteviewer inside a loop. However everytime I create a siteviewer object say with sv1 = siteviewer("Name",'temp') Matlab fires up the siteviewer map in a new window. I dont want to see the visualization. I just want to create the siteviewer object sv1. How can I do this?
  1 Kommentar
Tarek Mohamed
Tarek Mohamed am 23 Jul. 2023
Bearbeitet: Tarek Mohamed am 23 Jul. 2023
I have the same problem, and actually I need a solution

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Mann Baidi
Mann Baidi am 29 Feb. 2024
Bearbeitet: Mann Baidi am 29 Feb. 2024
As per my understanding, you don't want a new window popping up everytime you create a new 'siteviewer' object. I would suggest you to add 'Visible' parameter in the 'siteviewer' function and set it to 'off.For example as mentioned above, you are currently creating the object as follows:
sv1 = siteviewer("Name",'temp');
In order to close the window popping up, you can create the object as follows:
sv1 = siteviewer("Name",'temp', 'Visible','off');
This will close the window popping up automatically.
Hope this will resolve the query!

Kategorien

Mehr zu Propagation and Channel Models finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by