PolarAxes in Matlab App Designer

조회 수: 2 (최근 30일)
Taha Adel
Taha Adel 2020년 12월 26일
댓글: Steven Lord 2020년 12월 27일
Hello,
Simply, I need a way to define a PolarAxes object under parent object in Matlab App Designer. I tried the following code, but it doesn't work.!
pax = polaraxes(app.parent)
Hint: I took a look at the example of plotting polar plot in App Designer in the documentation, but I don't know where to find the actual code.

채택된 답변

Steven Lord
Steven Lord 2020년 12월 26일
From the Release Notes it appears support for polaraxes in App Designer apps was added in release R2018b.
  댓글 수: 2
Taha Adel
Taha Adel 2020년 12월 26일
Is there a way to update my version to 2018b by downloading the comulitive update files?
Steven Lord
Steven Lord 2020년 12월 27일
No, there is no "install this collection of files to upgrade release X to release X+1" package. Each general release is independent of previous releases. [For recent releases, there are update releases but those apply bug fixes to a specific release, like release R2020a to R2020a Update 1.]
Depending on your license and your maintenance you may be able to download and install release R2018b or a later release.

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

추가 답변 (2개)

Mario Malic
Mario Malic 2020년 12월 26일
Example taken from this website
theta = 0:0.01:2*pi;
rho = sin(2*theta).*cos(2*theta);
pax = polaraxes(app.Panel);
polarplot(pax,theta,rho)
  댓글 수: 6
Taha Adel
Taha Adel 2020년 12월 26일
편집: Taha Adel 2020년 12월 26일
Unfortunately, I couldn't find any demos related to polar plot in the software :( and the PolarAxes function still doesn't work by any means.
Mario Malic
Mario Malic 2020년 12월 26일
So I guess polar axes are not supported in 2018a.

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


Taha Adel
Taha Adel 2020년 12월 26일
Any ideas?

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by