photo

Hunter Steele


自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

6 个提问
0 个回答

排名
155,258
of 297,527

声誉
0

贡献数
6 个提问
0 个回答

回答接受率
33.33%

收到投票数
0

排名
 of 20,454

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 159,075

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 2
  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


Why is this fprintf not wprking correctly?
studentNames = ["Amy", "Flynn", "Barbara", "George", "Jonathan", "Isaac", "Cindy", "Hank", "Elaine", "Debbie"]; Test1 = [79, 71...

5 years 前 | 2 个回答 | 0

2

个回答

提问


I need help on part c d and f. Question is in comments
%% Part A dollars = 50000; inflation = .02; startAge = 23; endAge = 65; for year = startAge : 1 : endAge dollars =...

5 years 前 | 1 个回答 | 0

1

个回答

提问


Why isnt my graph?
dollars = 50000; inflation = .02; startAge = 23; endAge = 65; for year = startAge : 1 : endAge dollars = dollars + ...

5 years 前 | 0 个回答 | 0

0

个回答

提问


Why is this not outputting anything?
function output = MyMin(x) MIN_VALUE=0; [m, n]=size(x); for i=1:length(x) if MIN_VALUE>x(i) MIN_VALUE=x(i); ...

5 years 前 | 1 个回答 | 0

1

个回答

提问


Why wont it output index?
function[max,index]=MyMax(x) max=0; [n,m]=size(x); for i=1:m if max<x(i) max=x(i); ...

5 years 前 | 2 个回答 | 0

2

个回答

提问


Can not use the Fibonacci built in function
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ... (add previous two numbers together for the next in the sequence) 1. Find the first 10 od...

5 years 前 | 1 个回答 | 0

1

个回答