フィルターのクリア

the piecewise function runs out a weird figure

1 回表示 (過去 30 日間)
dcydhb dcydhb
dcydhb dcydhb 2019 年 3 月 12 日
編集済み: Adam Danz 2022 年 6 月 6 日
function codes are as this
function f = myfun(x)
if (x<1);
f=x.^2 ;
else
f=x;
end
end
main program codes are as this
clc;
clear all;
close all;
x=0:0.1:10;
y=myfun(x);
plot(x,y)
a simple figure but a queer figure,why
  1 件のコメント
Adam Danz
Adam Danz 2019 年 3 月 12 日
Hint from
doc if
"An expression is true when its result is nonempty and contains only nonzero elements (logical or real numeric)."

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

回答 (1 件)

Voss
Voss 2022 年 6 月 3 日
x=0:0.1:10;
y=myfun(x);
plot(x,y)
function f = myfun(x)
idx = x < 1;
f = zeros(size(x));
f(idx) = x(idx).^2;
f(~idx) = x(~idx);
end

カテゴリ

Help Center および File ExchangeSpecifying Target for Graphics Output についてさらに検索

製品


リリース

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by