Vous êtes sur la page 1sur 1

20/11/21 08:42 MATLAB Command Window 1 of 1

>> u=3;
>> r=0.6;
>> t=0:0.01:0.16;
>> l=0.012;
>> tau=r/l;
>> i=(u./r).*(1-exp(-(t./tau));
i=(u./r).*(1-exp(-(t./tau));

Error: Unbalanced or unexpected parenthesis or bracket.

Did you mean:


>> i=(u./r).*(1-exp(-(t./tau)));
>> plot(t,i)
>> tau=r./l;
>> plot(t,i)
>> tau=l./r;
>> plot(t,i)
>> plot(t,i)
>> t=0:0.001:0.16;
>> plot(t,i)
Error using plot
Vectors must be the same length.

>> i=(u./r).*(1-exp(-(t./tau)));
>> plot(t,i)
>> t=0:0.01:0.16;
>> plot(t,i)
Error using plot
Vectors must be the same length.

>> i=(u./r).*(1-exp(-(t./tau)));
>> plot(t,i)
>> plot(t,i)
>> t=0:0.001:0.16;
>> i=(u./r).*(1-exp(-(t./tau)));
>> plot(t,i)
>>

Vous aimerez peut-être aussi