陰関数の描画時において、(x,y)座標を変数にとりこみたい。
2 views (last 30 days)
Show older comments
AppDesignerにおいて、fimplicitでグラフを作成した時、その(x,y)の値をCSVファイルで取り込みたいのですが、うまく行きません。
ImplicitFunctionLineプロパティには、XDataやYDataがあるようですが、次のように記載しても、データがとれません。
また、エラーも発生しません。どこが間違っているのかご教示いただければ幸いです。
fimplicit(app.UIAxes,@(x,y) x.^2 + y.^2 -3, 'MeshDensity', 151, 'XData',app.XX, 'YData', app.YY);
Accepted Answer
Akira Agata
on 9 Nov 2023
ImplicitFunctionLine の XData, YData プロパティは陰関数を描画した際に生成されます。
以下のようにすると、生成後の XData, YData を取得することができます。
% 陰関数を描画
figure
h = fimplicit(@(x,y) x.^2 + y.^2 -3);
% XData, YDataプロパティを取得
x = h.XData;
y = h.YData;
% 表示
disp([x', y'])
More Answers (0)
See Also
Categories
Find more on ライン プロット in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!