How to find a constant
Info
This question is closed. Reopen it to edit or answer.
Show older comments
I have the equation y = k*(e^(x/25) - 1)
I have the values of x and y, but I need to find the "K".
Thanks!
1 Comment
John D'Errico
on 27 Mar 2016
sorry, but this is the third time you have asked exactly this question.
Answers (1)
Azzi Abdelmalek
on 27 Mar 2016
You don't need Matlab for that
k=y/(e^(x/25) - 1)
%or with Matlab
k=solve('y == k*(e^(x/25) - 1)','k')
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!