Adding functions in a for loop

조회 수: 6 (최근 30일)
Jeff
Jeff 2018년 7월 19일
댓글: Jeff 2018년 7월 25일
I am trying to add a function in a for loop but I keep getting an error (Undefined function 'plus' for input arguments of type 'function_handle'). I would like to keep summing y(x) and plot the final result. Below is my script. Thanks ahead of time!
syms x
y = @(x) 1
for c = 1:5;
y = y(x) + @(x) 3*c.*((0 <= x) & (x <= 5))
x = linspace(0.2, 4, 500);
end
plot(x,y(x)
  댓글 수: 1
Aquatris
Aquatris 2018년 7월 19일
One thing you can do is to define the second function (y2 = @(x) 3*c.*((0 <= x) & (x <= 5)) before that summation. I do not think Matlab allows defining functions in an algebraic equation.
Secondly, when you define
y = y(x);
you are basically overwriting the y(x) function and the next time you call y(x), it will give you an error.
There might be an easier way of doing this. If you actually type your question, someone might write the code for you.

댓글을 달려면 로그인하십시오.

답변 (1개)

OCDER
OCDER 2018년 7월 19일
Error is caused by adding a function handle to a value returned by a function handle. They're different things.
Y = y(x) + @(x) x^2 for instance, is equivalent to saying
value return by y(x) + a function name. Matlab goes : huh? What is 3 + name = ???
You don't need syms either it seems. You can do the following:
x = linspace(0.2, 4, 500);
y = @(x) 1; %This just returns 1 regardless of x. Is this what you want?
for c = 1:5
YH = @(x) y(x) + 3*c.*((0 <= x) & (x <= 5));
plot(x,YH(x))
end
I'm confused as to what you're expecting to plot, other than a line. Recheck YH, the function handle.
  댓글 수: 5
OCDER
OCDER 2018년 7월 19일
Yeah, I agree with Stephen - making a ton of function handles is not the right way to go. Making a function that takes input x and c would be better. Example:
x = linspace(0.2, 4, 500);
y = @(x) 1; %This just returns 1 regardless of x. Is this what you want?
YH = @(x, c) y(x) + 3*c.*((0 <= x) & (x <= 5));
for c = 1:5
if c == 1
y_all = YH(x, c);
else
y_all = y_all + YH(x, c);
end
end
plot(x,y_all)
Jeff
Jeff 2018년 7월 25일
Thanks for the input! I was able to get my code to work.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by