Question: The following script is already saved on MATLAB with its function exp 2 9 in the same folder. t 0 = 0 : 0

The following script is already saved on MATLAB with its function "exp29" in the same folder.
t0=0:0.01:40
x0=[0.010.1];
[t,x]= ode45('exp29',t0,x0)
plot (t,x(:,1),t,x(:,2))
The error in this script is:
Select one:
a. None of these
b. write xO=[0.01;0.1] and not 0=[0.010.1]
c. write plot(t,x(1,:),t,x(2,:)) instead of plot(t,x(:,1),t,x(:,2))
d. No error
e.[t,x]=0 de45('exp29',t0,x0) is wrongly written
The following script is already saved on MATLAB

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!