I do not understand how to fix this so that it doesn’t say notenough input arguments.
function f= EODE(t,x)
A=t*x;
B=x^2+t^2;
f(t,x)=sqrt(A(t,x)/B);
Output:
Not enough input arguments.
Error in EODE (line 2)
A=t*x;
Solution
`Hey,
Note: Brother in case of any queries, just comment inbox I would be very happy to assist all your queries
close all
clear all
clc
EODE(1,2)
function f= EODE(t,x)
A=t.*x;
B=x.^2+t.^2;
f=sqrt(A./B);
end
Kindly revert for any queries
Thanks.
I MATLAB R2018a ② ▼| rch Documentation Log In HOME EDITOR Find Files Compare ▼ Print Run Section New Open Save
OR
OR