I have question for MATLAB
This is question
so i solved this process
>> t=[0 0.1 0.2 0.3 0.5 0.7]
t =
0 0.1000 0.2000 0.3000 0.5000 0.7000
>> i=[0 0.16 0.32 0.56 0.84 2.0];
>> L=4
L =
4
>> didt=gradient(i,t);
>> didt
didt =
1.6000 1.6000 2.0000 1.7333 3.6000 5.8000
>> V=L*didt
V =
6.4000 6.4000 8.0000 6.9333 14.4000 23.2000
but i think something is wrong when t=0.3
can you plz modify this?
Faraday’s law characterizes the voltage drop across an inductor as Vi = L di where VL = voltage drop (V), L = inductance (in henrys, 1 H = 1 V s/A), i = current (A), and t = time (s). Determine the voltage drop as a function of time from the following data for an inductance of 4 H. t i 0 0 0.1 0.16 0.2 0.32 0.3 0.56 0.5 0.84 0.7 2.0 Show transcribed image text Faraday’s law characterizes the voltage drop across an inductor as Vi = L di where VL = voltage drop (V), L = inductance (in henrys, 1 H = 1 V s/A), i = current (A), and t = time (s). Determine the voltage drop as a function of time from the following data for an inductance of 4 H. t i 0 0 0.1 0.16 0.2 0.32 0.3 0.56 0.5 0.84 0.7 2.0
Expert Answer
Answer to I have question for MATLAB This is question so i solved this process >> t=[0 0.1 0.2 0.3 0.5 0.7] t = 0 0.1000 0.2000 0….