Help on solving equation
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
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
Antworten (3)
Sean de Wolski
am 2 Apr. 2012
Use a for-loop to loop through your w values.
for ii = 1:numel(w)
solve_with_w(ii)
end
1 Kommentar
Sean de Wolski
am 2 Apr. 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
am 2 Apr. 2012
0 Stimmen
Stephen
am 2 Apr. 2012
0 Stimmen
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!