2-D plot

1 回表示 (過去 30 日間)
danish ansari
danish ansari 2020 年 12 月 10 日
回答済み: Image Analyst 2020 年 12 月 10 日
i want to plot a graph:
y axis: (0.00062539 - 1.000625*((Ri^2)/(R^2)))
x-axis: R/Ri.
Ri is constant and R is a variable.
which command should i use?

回答 (1 件)

Image Analyst
Image Analyst 2020 年 12 月 10 日
Try this:
Ri = 1; % Whatever.
R = linspace(-0.0000000010, 0.0000000010, 2000) / Ri; % Whatever range you want.
y = 0.00062539 - 1.000625*(Ri^2 ./ R.^2);
plot(R, y, 'b-', 'LineWidth', 2);
grid on;
title('y = 0.00062539 - 1.000625*(Ri^2 ./ R.^2)', 'FontSize', 20);
xlabel('R/Ri', 'FontSize', 20);
ylabel('y', 'FontSize', 20);

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

タグ

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by