Why the Surf function is not working?

13 ビュー (過去 30 日間)
chaos B
chaos B 2020 年 1 月 15 日
コメント済み: chaos B 2020 年 1 月 15 日
I have this function i am trying to plot but its not working. In fact, every time i try to use ' surf ' it does not work... i get the same error.
this is a code example
[x,y] = meshgrid(-2:.2:2);
g = x .* exp(-x.^2 - y.^2);
surf(x, y, g)
and this is the error i get every time i try to graph 3d using surf
Undefined function or variable 'xerror'.
Error in surf (line 71)
xerror(surfchk(dataargs{:}));
This is line 71 in surf : xerror(surfchk(dataargs{:}));
Any ideas anyone?

採用された回答

Walter Roberson
Walter Roberson 2020 年 1 月 15 日
At some point you had the code for surf open and accidentally inserted a character into the code. You need to go back and delete the x from that line of code.
  1 件のコメント
chaos B
chaos B 2020 年 1 月 15 日
Indeed Mr. Walter, i had an accidental x(first x) in line 71. i removed it and the code worked perfectly! Many Thanks!!

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

その他の回答 (0 件)

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by