Estadística
5 Preguntas
0 Respuestas
CLASIFICACIÓN
35.027
of 301.273
REPUTACIÓN
1
CONTRIBUCIONES
5 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
60.0%
VOTOS RECIBIDOS
1
CLASIFICACIÓN
of 21.212
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 173.726
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
I am trying to simulate a blackjack game
initially I wrote a function that takes as input the number of the card (in the sense of the columns labeled # in the table), an...
más de 3 años hace | 0 respuestas | 0
0
respuestasPregunta
new user to matlab, need help with simulating a game of black jack
Write a Matlab function called card_value.m which takes as input the number of the card (in the sense of the columns labeled # i...
más de 3 años hace | 0 respuestas | 0
0
respuestasPregunta
I want to be able to calculate and plot the total interest if the extra payment each month is changing
my code is: which calls on my file: function P = amortization(a, R, n) r = R/12; P = a*(r*((1+r)^n))/(((1+r)^n) - 1); e...
más de 3 años hace | 1 respuesta | 1
1
respuestaPregunta
I am having trouble saving a value and calculating new values from it.
my code is: n = 180; a = zeros(1,n); a(1) = 20000; R = 0.06; r = R/12; z = amortization(a(1),R,n); for i = 2:n b(i) ...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
How to save outputs from previous iterations and plot
my code is: a = 20000; R = 0.06; n = 180; r = R/12; z = amortization(a,R,n); for i = 1:180 b = a*r; %b is interest payed...
más de 3 años hace | 1 respuesta | 0
