siteviewer object and visualization

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

Tarek Mohamed
Tarek Mohamed 2023년 7월 23일
편집: Tarek Mohamed 2023년 7월 23일
I have the same problem, and actually I need a solution

댓글을 달려면 로그인하십시오.

답변 (1개)

Mann Baidi
Mann Baidi 2024년 2월 29일
편집: Mann Baidi 2024년 2월 29일

1 개 추천

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!

카테고리

도움말 센터File Exchange에서 Propagation and Channel Models에 대해 자세히 알아보기

질문:

2021년 3월 21일

편집:

2024년 2월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by