photo

Jacob Wagner


Last seen: 9 Monate vor Aktiv seit 2022

Followers: 0   Following: 0

Statistik

MATLAB Answers

5 Fragen
0 Antworten

RANG
35.027
of 301.298

REPUTATION
1

BEITRÄGE
5 Fragen
0 Antworten

ANTWORTZUSTIMMUNG
60.0%

ERHALTENE STIMMEN
1

RANG
 of 21.225

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 173.851

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Thankful Level 2

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


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...

mehr als 3 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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...

mehr als 3 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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...

mehr als 3 Jahre vor | 1 Antwort | 1

1

Antwort

Frage


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) ...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort