Feeds
已回答
how to find matrix integral
You can calculate exp(at) using 'c2dm'. Refer to the following code. aa is what you want with a specific sampling time Ts. ...
how to find matrix integral
You can calculate exp(at) using 'c2dm'. Refer to the following code. aa is what you want with a specific sampling time Ts. ...
12 years 前 | 0
已回答
how to use this m-file to solve an equation?
This is the Bisection method for finding the solution function test x= eqn(@(x)x^10-1,0,1.3,1e-6,50) end ...
how to use this m-file to solve an equation?
This is the Bisection method for finding the solution function test x= eqn(@(x)x^10-1,0,1.3,1e-6,50) end ...
12 years 前 | 0
已回答
Newton-Raphson method to solve equations.
Please refer to this code. function main x0= 1; % initial value eps= 1e-6; % accuracy nmax= 50; % maximum iteration x= ne...
Newton-Raphson method to solve equations.
Please refer to this code. function main x0= 1; % initial value eps= 1e-6; % accuracy nmax= 50; % maximum iteration x= ne...
12 years 前 | 0