photo

Gang-Gyoo


KMU

Active since 2012

Followers: 0   Following: 0

Message

Statistics

  • First Answer

View badges

Feeds

View by

Answered
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. ...

11 years ago | 0

Answered
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 ...

11 years ago | 0

Answered
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 ago | 0