MATLAB: T1 range is 0.1 to 2 and t2 range is 0.1 to 2…..and t1+t2 should not be greater than 2

mathematicsMATLABsignal processing

t1 range is 0.1 to 2 and t2 range is 0.1 to 2…..and t1+t2 should not be greater than 2

Best Answer

t1=0:0.1:2;
t2=0:0.1:2;
t=t1+t2;
t(t>2)=[];