![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/15939951_1565457685206_DEF.jpg)
Hunter Steele
2019 年からアクティブ
Followers: 0 Following: 0
統計
MATLAB Answers
6 質問
0 回答
ランク
of 157,897
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
Why is this fprintf not wprking correctly?
studentNames = ["Amy", "Flynn", "Barbara", "George", "Jonathan", "Isaac", "Cindy", "Hank", "Elaine", "Debbie"]; Test1 = [79, 71...
5年以上 前 | 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年以上 前 | 1 件の回答 | 0
1
回答質問
Why isnt my graph?
dollars = 50000; inflation = .02; startAge = 23; endAge = 65; for year = startAge : 1 : endAge dollars = dollars + ...
5年以上 前 | 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年以上 前 | 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年以上 前 | 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年以上 前 | 1 件の回答 | 0