I need help with converting this to matlab
1 回表示 (過去 30 日間)
古いコメントを表示
Input the n x n matrix A and n element vector b
for k = 1 to n
for i = k + 1 to n
lik aik=akk
for j = k + 1 to n
aij to aij - likakj
end for
end for
end for
0 件のコメント
採用された回答
Image Analyst
2013 年 4 月 9 日
Try input() or inputdlg(). Try that. Come back with your attempt if you still have problems.
3 件のコメント
Image Analyst
2013 年 4 月 9 日
n = 3
dialog_title = 'Input';
numberOfLines = 1;
for row = 1 : n
prompt = sprintf('Enter %d numbers for row #%d, separated by spaces', n, row);
userResponse = inputdlg(prompt,dialog_title,numberOfLines)
A(row, :) = .....% You do it.
end
A
See if you can get the line I indicated as "You do it". It might involve str2double, strsplit, cell2mat, and userResponse(1).
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!