Filter löschen
Filter löschen

the piecewise function runs out a weird figure

1 Ansicht (letzte 30 Tage)
dcydhb dcydhb
dcydhb dcydhb am 12 Mär. 2019
Bearbeitet: Adam Danz am 6 Jun. 2022
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 Kommentar
Adam Danz
Adam Danz am 12 Mär. 2019
Hint from
doc if
"An expression is true when its result is nonempty and contains only nonzero elements (logical or real numeric)."

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Voss
Voss am 3 Jun. 2022
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

Kategorien

Mehr zu Specifying Target for Graphics Output finden Sie in Help Center und File Exchange

Produkte


Version

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by