photo

Jacob Wagner


Last seen: 11 months 前 自 2022 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

5 个提问
0 个回答

排名
35,027
of 301,726

声誉
1

贡献数
5 个提问
0 个回答

回答接受率
60.0%

收到投票数
1

排名
 of 21,402

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 176,285

贡献数
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 years 前 | 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 years 前 | 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...

4 years 前 | 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) ...

4 years 前 | 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 years 前 | 1 个回答 | 0

1

个回答