Recent content by qiyan31

  1. Q

    Matlab help User defined function

    Here's the function. Ht=fminbnd(@Height,0,5000,V,Theta);
  2. Q

    MATLAB Matlab help User defined function

    I made a user-defined function for Height. function Ht=Height(t,V,Theta); Ht=V*t*sin(Theta)-4.9*t.^2; end V is initial velocity, and i kept on getting input "V" is undefined. Can someone help me please!
  3. Q

    Matlab help User defined function

    I tried to make a user-defined function. function Ht=Height(t,V,Theta); Ht=V*t*sin(Theta)-4.9*t.^2; but then i kept on getting Input argument "V" is undefined... can someone help me please
Back
Top