xlabel not working inside a function

7 ビュー (過去 30 日間)
Sankalp Garud
Sankalp Garud 2021 年 10 月 20 日
コメント済み: Sankalp Garud 2021 年 10 月 20 日
Hey all,
I am trying to create a simple funciton
function scatter_plot(x, y, xlabel, ylabel)
scatter(x,y,'filled');
xlabel(xlabel)
ylabel(ylabel)
end
However this does not work at the xlabel line. Why? The same code if I take it out of the function works very well. I'm not wanting to copy paste this code for all my scatter plots. In addition, I may want to change some formatting in future, and again, having a function would be ideal.

採用された回答

Dave B
Dave B 2021 年 10 月 20 日
You've named the function's parameters xlabel and ylabel. So within the function xlabel and ylabel are variables, not functions. Simply choose a different name:
function scatter_plot(x, y, xlbl, ylbl)
scatter(x,y,'filled');
xlabel(xlbl)
ylabel(ylbl)
end
  1 件のコメント
Sankalp Garud
Sankalp Garud 2021 年 10 月 20 日
Super! Thanks!

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

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by