統計
MATLAB Answers
3 質問
0 回答
ランク
of 175,013
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
How can I calculate the iteration using the for loop function and store all iteration outputs in matrix for the big data array? Somebody please help me. Thank you.
load metals X= (tspec)';% size X=16 x 1301 double [m,n] = size(X); mx = mean(X); x = (X-mx(on...
11年弱 前 | 0 件の回答 | 0
0
回答質問
I got this error message 'Subscripted assignment dimension mismatch'
x=rand(16,1301); y=rand(16,4); k=0:0.01:1; I=eye(size(x'*x)); b=zeros(size(x'*x)); for j=1:length(k) b(:...
11年弱 前 | 1 件の回答 | 0
1
回答質問
I need to calculate matrix b for each iteration from k value 0 to 1 with the step size of 0.01. How can I calculate the iteration using the for loop function and store all iteration outputs in matrix? Somebody please help me. Thank you.
load acetylene X= [x1,x2,x3]; k =1; I=eye(size(X'*X)); b=((inv(X'*X+k*I))*X')*y; for i=0:0....
11年弱 前 | 2 件の回答 | 0
