PolarAxes in Matlab App Designer

2 vues (au cours des 30 derniers jours)
Taha Adel
Taha Adel le 26 Déc 2020
Commenté : Steven Lord le 27 Déc 2020
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.

Réponse acceptée

Steven Lord
Steven Lord le 26 Déc 2020
From the Release Notes it appears support for polaraxes in App Designer apps was added in release R2018b.
  2 commentaires
Taha Adel
Taha Adel le 26 Déc 2020
Is there a way to update my version to 2018b by downloading the comulitive update files?
Steven Lord
Steven Lord le 27 Déc 2020
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.

Connectez-vous pour commenter.

Plus de réponses (2)

Mario Malic
Mario Malic le 26 Déc 2020
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 commentaires
Taha Adel
Taha Adel le 26 Déc 2020
Modifié(e) : Taha Adel le 26 Déc 2020
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 le 26 Déc 2020
So I guess polar axes are not supported in 2018a.

Connectez-vous pour commenter.


Taha Adel
Taha Adel le 26 Déc 2020
Any ideas?

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by