plot in matlab app design siteviewer

I am creating a propagationData in order to plot it in the siteviewer, in order to see the calculated radar coverage. I can easily do this when I'm not in app design. Is it possible to make this plot?
this is the part of the code that does this. It is not producing any results because it does not understand that it should plot in the siteviewer.
tabelData =table(Latitude,Longitude,Power);
Den_potenc = propagationData(tabelData);
plot(Den_potenc,'MarkerSize',5,"LegendTitle",legendTitle);

回答 (1 件)

Cris LaPierre
Cris LaPierre 2023 年 5 月 23 日
編集済み: Cris LaPierre 2023 年 5 月 23 日

1 投票

In App Designer, you need to designate the target axes. I think the equivalent code should look something like this (untested).
plot(app.UIAxaes,Den_potenc,'MarkerSize',5);
lgd = legend(app.UIAxes);
title(lgd,'legendTitle')

1 件のコメント

Bruno
Bruno 2023 年 5 月 23 日
Thanks a lot for the feedback.
I managed to make it work, and it was not necessary to specify the UIAxaes, that is, the problem was with my data.
I used the raw data to test.
plot(pdata{1},'MarkerSize',5,"LegendTitle",legendTitle);

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangePropagation and Channel Models についてさらに検索

質問済み:

2023 年 5 月 23 日

コメント済み:

2023 年 5 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by