フィルターのクリア

How to repeat the use of a function?

8 ビュー (過去 30 日間)
Farid
Farid 2014 年 9 月 7 日
編集済み: Rick Rosson 2014 年 9 月 7 日
I am trying to run the same function multiple times within a script. The function plots a figure after I input the variables. I am trying to superimpose the multiple figures into one graph while using the same function. I used the "hold on" command after each plot, but I only get the graph of the first inputted variables. How do I reiterate the use of the function?

回答 (1 件)

Rick Rosson
Rick Rosson 2014 年 9 月 7 日
You need to create the figure and axes in the script before you call the function that does the plotting. You should pass the axes handle as an input to your potting function.
Your script should look something like the following:
fig = figure;
ax = axes;
hold on
myplotfunc(ax,x,y,z);
myplotfunc(ax,u,v,w);
...
Inside your plotting function, make sure you pass the axes handle as the first argument to any plot command that you call.
HTH.
  3 件のコメント
Rick Rosson
Rick Rosson 2014 年 9 月 7 日
Please format your code so that it is easy for others to read.
Rick Rosson
Rick Rosson 2014 年 9 月 7 日
編集済み: Rick Rosson 2014 年 9 月 7 日
Please review the answer that I provided and try implementing it. It will work.
Hint:
P = fill(x,y,color,'parent',ax);

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by