Indicator Function Error

조회 수: 10 (최근 30일)
Ammar
Ammar 2011년 11월 3일
I am trying to define a piece-wise function over several different intervals. However, the indicator function won't let the function evaluate for a specified input value. It keeps telling me that input argument a is undefined. I can't seem to figure out what I am doing wrong though. Here is what I have:
v = @(t,a,b) (t>=a) & (t<b);
f=@(t) 0.*v(t<0) + 2*t.*v(0<=t & t<0.5) + 0.*v(t==0.5) + ...
(2*t-2).*v(t,0.5,1) + 0.*v(t>=1)
t=[0:0.01:1];
The program won't let me evaluate f(t). Also, am I allowed to set the intervals as logicals or do I have to have values? This is not covered in my book or in my lecture notes. Thanks for the help.

채택된 답변

Fangjun Jiang
Fangjun Jiang 2011년 11월 3일
Your v is an anonymous function. It has three input arguments.
In your f (also an anonymous function), there are v(t<0), v(0<=t & t<0.5), v(t==0.5) and v(t>=1). All just have one input argument. That is why it complains that the second input argument a is not provided.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by