plot with input arguments

1 回表示 (過去 30 日間)
Roger Nadal
Roger Nadal 2019 年 12 月 5 日
コメント済み: Roger Nadal 2019 年 12 月 11 日
i want to subplot 4 string containg cell array from ( sin, cos, tan,sinh) and vector (+,o,*,x,s) and the mathmatical function should be ploted in interval (-2pi,2pi)with step 0.3

採用された回答

Walter Roberson
Walter Roberson 2019 年 12 月 5 日
funs_cell = {'sin', 'cos', 'tan', 'sinh'};
markers = {'+', 'o', '*', 'x', 's'};
funs = cellfun(@str2fun, funs_cell, 'uniform', 0);
for K = 1 : length(funs)
plot(x, funs{K}(x), markers{K}, 'DisplayName', funs_cell{K});
hold on
end
  33 件のコメント
Roger Nadal
Roger Nadal 2019 年 12 月 11 日
Thank you
Roger Nadal
Roger Nadal 2019 年 12 月 11 日
If I don’t want to generate random order for then should I remove randperm?

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

その他の回答 (0 件)

カテゴリ

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