Hello, any one help me, How can I write this?

3 Ansichten (letzte 30 Tage)
ahmet emin arslan
ahmet emin arslan am 7 Mai 2019
Hi guys. I should create an application for calculates the nominal interest rate.
i = nominal interest rate P = initial investment T = future value N = number of compounding periods per year Y = number of years App looks like this:
Can you help me for writing code?
20190507_214511.jpg
  5 Kommentare
ahmet emin arslan
ahmet emin arslan am 7 Mai 2019
For create this, I dont know how can I write code? I tried this:
But it didn't work
Walter Roberson
Walter Roberson am 7 Mai 2019
What error message did you observe?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Roy Kadesh
Roy Kadesh am 7 Mai 2019
Try this:
function cal_butButtonPushed(app, event)
P=app.p_val;
T=app.t_val;
N=app.n_val;
Y=app.y_val;
I=N*((T/P)^(1/(N*Y))) - N;
app.i_val=I;
end

Weitere Antworten (0)

Kategorien

Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by