回答 (2 件)

madhan ravi
madhan ravi 2020 年 7 月 31 日

0 投票

doc fsurf
Alexander
Alexander 2020 年 7 月 31 日

0 投票

x = 1:0.1:10;
y = 1:0.1:10;
[X,Y] = meshgrid(x,y);
Z=1./sqrt(X.^2+Y.^2);
imagesc(x,y,Z)

4 件のコメント

Zilla Tofte
Zilla Tofte 2020 年 7 月 31 日
Why is the x and y=1:0.1:10...what does that mean?
Zilla Tofte
Zilla Tofte 2020 年 7 月 31 日
The picture of that code is just a blue grid...
Alexander
Alexander 2020 年 7 月 31 日
as an example, I plotted x/y in 1 to 10 range. You can substitute with whatever ranges you need. "0.1" is the step for x/y variables. x = 1:0.1:10 creates a vector of number [1 1.1 1.2 ..... 9.9 10].
madhan ravi
madhan ravi 2020 年 7 月 31 日
surf() instead of imagesc()

サインインしてコメントする。

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

質問済み:

2020 年 7 月 31 日

コメント済み:

2020 年 7 月 31 日

Community Treasure Hunt

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

Start Hunting!

Translated by