Hello, any one help me, How can I write this?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ahmet emin arslan
el 7 de Mayo de 2019
Comentada: Walter Roberson
el 7 de Mayo de 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?
5 comentarios
Respuesta aceptada
Roy Kadesh
el 7 de Mayo de 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
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!