How to find a constant

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

sorry, but this is the third time you have asked exactly this question.

Answers (1)

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.

Asked:

on 27 Mar 2016

Closed:

on 27 Mar 2016

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!