Recent content by mikaili

  1. M

    MATLAB Troubleshooting Matlab Loops: Discovering a Simple Solution | Get Help Now

    Thanks Mark44 , Your answer was convincing . Actually when I checked s-fix(s) it was a number in the range of 1*10^-16
  2. M

    MATLAB Troubleshooting Matlab Loops: Discovering a Simple Solution | Get Help Now

    I have recently found a silly problem with Matlab loop try the following simple program : >> clear all >> for s=0:0.1:1 >> V(10*s+1)=s; >> end it will get into trouble when s reaches 0.6 would anybody please check and let me know the result
  3. M

    MATLAB Matlab - I am having problems with iteration (loops)

    I have also found a silly problem with Matlab loop try the following simple program : clear all for s=0:0.1:1 V(10*s+1)=s; end it will get into trouble when s reaches 0.6 would anybody please check and let me know the result
Back
Top