PolarAxes in Matlab App Designer
2 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
采纳的回答
Steven Lord
2020-12-26
From the Release Notes it appears support for polaraxes in App Designer apps was added in release R2018b.
2 个评论
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
2020-12-26
theta = 0:0.01:2*pi;
rho = sin(2*theta).*cos(2*theta);
pax = polaraxes(app.Panel);
polarplot(pax,theta,rho)
6 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!