Matlab: Finding a quicker method than simple iteration

  • Thread starter Thread starter rewmck
  • Start date Start date
  • Tags Tags
    Matlab Method
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
6 replies · 4K views
rewmck
Messages
3
Reaction score
0

Homework Statement



I am trying to speed up a function in MATLAB that solves the equation by simple iteration:

λ= [itex]\frac{gT^{2}\frac{\text{tanh}(2\pi h)}{λ}}{2\pi}[/itex]

Where λ is wavelength, h is wave height, T is period and g=9.81.

Also here where it's a bit easier to read.

Homework Equations


The Attempt at a Solution



Currently I'm using simple iteration so I'm guessing lambda then putting the equation in a while loop where the new value of lambda is given by putting the old value in the above equation. The while terminates when the values of lambda converge.

This is one of the slowest parts of my code and thousands of iterations are done when I run my code.

Does anyone know of a method which converges faster or would be computationally faster? I tried the Newton Raphson method and rearranged the equation by making one side zero to get f(x) and differentiated for f(x). This converges quicker but often gives the wrong answer.

Thanks
 
Last edited:
Physics news on Phys.org
Matlab probably has built-in solvers that may behave better. Investigate "roots of scalar functions", for example.
 
Thanks for the push in the right direction. Matlab has a built in function fzero which gets the roots. Iteration is quicker for 99% of my calculations but the final 1% is much faster with fzero so I have found the point where it becomes beneficial to use fzero and put an if in my function. So now the function is about 50 times faster. Thanks!
 
rewmck - what are you trying to solve for? Also, is that formulae stated correctly? I read your equation as follows:

[tex] \lambda = \frac{g \cdot T^2}{2\, \pi} \cdot \frac{\tanh(2\, \pi \, h)}{\lambda}[/tex]
 
Hi Theo, solving for lambda and you're right the equation is wrong, it should be:
[tex] \lambda = \frac{g \cdot T^2}{2\, \pi} \cdot \tanh\left(\frac{2\, \pi \, h}{\lambda}\right)[/tex]
Sorry about that.

So I solve for lambda over a range of T values. I discovered that the fzero function which works much quicker than simple iteration for large T values is actually giving completely the wrong answer but at smaller T values it gives the same as simple iteration. I'm not sure what is happening as I haven't had the chance to look closely at the fzero code but I guess it is round off errors or diverging. I think it is probably diverging as it is out by a factor of 10^16 for the value I checked.


TheoMcCloskey said:
rewmck - what are you trying to solve for? Also, is that formulae stated correctly? I read your equation as follows:
...
 
Have you plotted the function f(λ) = 0 to investigate why it might be 'tricky' in some regions of its domain?