photo

Jacob Wagner


Last seen: 11ヶ月 前 2022 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

5 質問
0 回答

ランク
35,027
of 301,671

評判
1

コントリビューション
5 質問
0 回答

回答採用率
60.0%

獲得投票数
1

ランク
 of 21,379

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 176,058

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 2

バッジを表示

Feeds

表示方法

質問


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

3年以上 前 | 0 件の回答 | 0

0

回答

質問


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

3年以上 前 | 0 件の回答 | 0

0

回答

質問


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

3年以上 前 | 1 件の回答 | 1

1

回答

質問


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

3年以上 前 | 1 件の回答 | 0

1

回答

質問


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

4年弱 前 | 1 件の回答 | 0

1

回答