photo

Milan Chavda


Last seen: 3 years ago Active since 2020

Followers: 0   Following: 0

Statistics

All
  • Solver

View badges

Feeds

View by

Question


Solving Linear Differential Equations for Path Following ; I am getting difficulties in implementing the coding with variable psi_e, let's say if I want to run it for psi_e going from 0 to pi/2, how can it be done?
function [dydt] = MyFun(t,y,w1_x,w1_y,w2_x,w2_y) dydt = zeros(3,1); S = 15 ; psi_e = pi/2 ; k = 10 ; Tau = 135 ; alpha ...

4 years ago | 1 answer | 0

1

answer

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

4 years ago