Help on solving equation
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
Hello,
I have an equation:
((w^2)/g) = k*tanh(k*d)
and I need to solve for k, but I have 50 w values and I am not sure how to solve for 50 k values. I know how to solve for it if only have one w value, but not for 50. If some one could please help me out that would be great. Thanks.
w = w = 0.188:0.021363:1.256
Respuestas (3)
Sean de Wolski
el 2 de Abr. de 2012
Use a for-loop to loop through your w values.
for ii = 1:numel(w)
solve_with_w(ii)
end
1 comentario
Sean de Wolski
el 2 de Abr. de 2012
The same way you normally do? You want one k value for each w value correct? Otherwise what are you trying to do? Come up with a best k for all w? Add more detail to your question
Stephen
el 2 de Abr. de 2012
0 votos
Stephen
el 2 de Abr. de 2012
0 votos
La pregunta está cerrada.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!