can you help please
    1 view (last 30 days)
  
       Show older comments
    
I have this code (attached)
it keeps giving me error message saying:
Error using @(y)((-0.02^2)*sqrt(2*(9.81)*y))/(2*4*y-(y^2)) Too many input arguments.
0 Comments
Answers (1)
  Star Strider
      
      
 on 6 Apr 2015
        The problem is in this (and similar) lines:
y1(i+1) = y1(i) + f(t(i),y1(i))*h;
You are passing your ‘f’ function 2 arguments when it only takes one.
2 Comments
  Star Strider
      
      
 on 7 Apr 2015
				You already have ‘t’ defined as a vector, so I don’t know why you need it as input to your function, since you’re not using it there.
One possibility:
y1(i+1) = y1(i) + f(y1(i))*h;
and so with the others. That should at least run without problems (I didn’t test it). See if it improves your code.
See Also
Categories
				Find more on Testing Frameworks in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
