Understand Fix Doesn T Say Enough Input Arguments Function F Eode T X T X B X 2 T 2 F T X Q37050205

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

I MATLAB R2018a ② ▼| rch Documentation Log In HOME EDITOR Find Files Compare ▼ Print Run Section New Open Save Advance Run an

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

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.