ANIKET KADAM - MATLAB Central
photo

ANIKET KADAM


Active since 2016

Followers: 0   Following: 0

Statistics

MATLAB AnswersFrom 02/16 to 01/25Use left and right arrows to move selectionFrom 02/16Use left and right arrows to move left selectionTo 01/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%

RANK
218,746
of 296,498

REPUTATION
0

CONTRIBUTIONS
5 Questions
0 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
0

Feeds

View by

Question


I have prepared MATLAB code using ODE45 for calling function. Its giving error as "input argument 'z' is undefined. zp(1) = z(2); "
%apple solver code x0=1e-6; %initial position xp0=0; %initial velocity y0=1e-6; %initial position yp0=0; %init...

9 years ago | 1 answer | 0

1

answer

Question


I want to create a STATE SPACE function. I have converted higher order differential into first order differential. but I am not able to form matrix A(state matrix) and matrix B(input/control matrix) from the equations. Please help
function zp = statespace(t,z); zp(1) = z(2); zp(2) = w/m - c*z(2)/m - k*[z(1)*cos(phi(i)) + z(3)*sin(phi(i))].^(3/2); z...

9 years ago | 0 answers | 0

0

answers

Question


how to solve this equation using state space variable method in matlab ?
<</matlabcentral/answers/uploaded_files/48090/Capture1.PNG>>

9 years ago | 0 answers | 0

0

answers

Question


how to solve higher order differentail equation using Runge Kutta 4th order method in matlab ?
<< << <</matlabcentral/answers/uploaded_files/48088/equation%20of%20motion.PNG>> >> >>

9 years ago | 1 answer | 0

1

answer

Question


how do i add output of Fx and Fxd?
F(row,i)= Fx + Fxd

9 years ago | 1 answer | 0

1

answer
Go to top of page