my matlab is showing error in (line 5) subplot(1,2,1) %Create a left subplot in the below function. what's the solution??

1 回表示 (過去 30 日間)
a = -2:0.2:2; %Creating a vector a with 21 elements
[x, y] = meshgrid(a, a); %Creating x and y as a meshgrid of a
z = exp (-x.^2 - y.^2); %Take the 2-dimensional exponential of x and y
figure %Open a new figure
subplot(1,2,1) %Create a left subplot
mesh(z) %Draw a wire mesh plot of the data in z
subplot(1,2,2) %Create a right subplot
surf(z) %Draw a surface plot of the data in z
  1 件のコメント
KSSV
KSSV 2017 年 5 月 15 日
It is working fine....it is generating figure. What version you are using?

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

採用された回答

Megha Parthasarathy
Megha Parthasarathy 2017 年 5 月 17 日
Hello,
It is working fine. I see the below figure.
What is the error that you see?
  1 件のコメント
jaskaran singh
jaskaran singh 2017 年 5 月 18 日
yeah it was...i mistakenly named the script name same as the function used....sry fr the trouble

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSubplots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by