How can I plot the graph?
1 回表示 (過去 30 日間)
古いコメントを表示
採用された回答
Chunru
2021 年 9 月 16 日
x = 0:100;
plot(x,carFunc(x));
ylim([0 30])
function output = carFunc(x)
output = zeros(size(x));
idx = (x >= 75);
output(idx) = 25;
idx = (x < 75);
output(idx) = x(idx)/3;
end
2 件のコメント
Chunru
2021 年 9 月 17 日
"output=zeros(size(x));" allocates memory for the variable output and initializes it with 0s. This may make the code more efficient.
その他の回答 (1 件)
Behzad Eydiyoon
2021 年 9 月 16 日
function output = carFunc(x)
x=0:0.1:75;
if (x >= 75)
output = 25;
else
output = x/3;
end
plot(x,output)
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で 3-D Scene Control についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!