Effacer les filtres
Effacer les filtres

Export Geometry Description from Pdesolver app

1 vue (au cours des 30 derniers jours)
Sarinthree Udchachone
Sarinthree Udchachone le 22 Mar 2020
I have the following code:
x= 0:0.1:1;
y= x.^2-x+1;
x=[0 x 1];
y=[0 y 0];
pdepoly(x,y);
When I run it, it opens a graph through pdesolver app. There is a button “Draw” on top of the graph which allows to Export Geometry Description, Set Formulas, Labels.
Question: Is there a command to “Export Geometry Description...” through Command Window or m.file itself ?
Thank you!
~Sandy

Réponses (1)

Anudeep Kumar
Anudeep Kumar le 27 Mar 2020
Hey, there is no Matlab command to do that but what would I suggest is you can open the source of the function pdepoly() selecting it and pressing ctrl+d or right click and select open selection or you can use :
>> edit pdepoly
and copy it another script and rename it to a different name and modify it to return the variable pdegd . You can use it in your script and that would solve your issue. You can also return any other variable like label , set formula etc.
function pdegd=mypdepoly(x,y,label)
.......
and so on

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by