Filter löschen
Filter löschen

Function Call not working properly

1 Ansicht (letzte 30 Tage)
Daniel Schilling
Daniel Schilling am 18 Okt. 2018
Kommentiert: Kevin Chng am 18 Okt. 2018
t = linspace(-10,15,26);
plot(t, x_general(t))
where x_general is defined as:
function [x_out] = x_general(x_in)
if x_in >= -5 & x_in < 5
x_out = -2 .* abs(x_in) + 10
elseif x_in > 5 & x_in <= 10
x_out = 10
else
x_out = 0
end
end
When I run this, my plot comes up blank. Not sure why this happens?

Antworten (2)

Stephen23
Stephen23 am 18 Okt. 2018
Bearbeitet: Stephen23 am 18 Okt. 2018
You probably want to be using logical indexing rather than if:
function y = fun(x)
y = zeros(size(x));
idx = x>5 & x<=10;
y(idx) = 10;
idx = x>=-5 & x<5;
y(idx) = -2 .* abs(x(idx)) + 10
end
  2 Kommentare
Daniel Schilling
Daniel Schilling am 18 Okt. 2018
What do you mean?
Stephen23
Stephen23 am 18 Okt. 2018
Bearbeitet: Stephen23 am 18 Okt. 2018
"What do you mean?"
The introductory tutorials teach the basic concepts, such as what indexing is, that you will need to know if you want to use MATLAB:
The point is that if does not apply to parts of an array, as you are trying to use it. But you can easily use logical indexing to specify parts of an array, and my answer shows you how.

Melden Sie sich an, um zu kommentieren.


Kevin Chng
Kevin Chng am 18 Okt. 2018
t = linspace(-10,15,26);
plot(t, x_general(t))
function [x_out] = x_general(x_in)
x_out = zeros(1,length(x_in));
x_out(x_in >= -5 & x_in < 5) = -2 .* abs(x_in(x_in >= -5 & x_in < 5 )) + 10 ;
x_out(x_in > 5 & x_in <= 10) = 10 ;
end
In yor code, you are not returning the array, you return a single variable which is 0.
  4 Kommentare
Daniel Schilling
Daniel Schilling am 18 Okt. 2018
%Sets the interval for the sinc function
t = linspace(-2*pi,2*pi);
%Plots sinc using the built in function call
plot(t,sinc(t))
hold on
%Plots sinc function with user made function called MySin
plot(t,MySinc(t));
hold on
%Defining function "MySinc"
function [sinc_out] = MySinc(sinc_in)
%Definition of sinc(x)
if sinc_in ~= 1.0
sinc_out = sin(sinc_in)./sinc_in;
else
sinc_out = 0
end
end
So how come this one worked but without indexing perfectly fine but the one I asked the question about didnt? What's the difference?
Kevin Chng
Kevin Chng am 18 Okt. 2018
Because your condition
sinc_in ~= 0
All is true which is 1.
if any of them is 0, then your condition is false.then you are not allow enter the if.
That's why the code in your question enter else there which is x_out=0

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by