フィルターのクリア

i want to change the value in some specific rows how can i do it

14 ビュー (過去 30 日間)
Dija
Dija 2014 年 12 月 4 日
回答済み: Abed 2014 年 12 月 5 日
i want to change the value in some specific rows how can i do it?

回答 (2 件)

C.J. Harris
C.J. Harris 2014 年 12 月 4 日
A = [1 2 3; 1 2 3; 1 2 3; 1 2 3; 1 2 3; 1 2 3]
% Change Row 2
A(2,:) = [9 8 7];
% Change Row 5
A(5,:) = [5 5 5];
A =
1 2 3
9 8 7
1 2 3
1 2 3
5 5 5
1 2 3

Abed
Abed 2014 年 12 月 5 日
name of matrix(row, column) = replacement value

カテゴリ

Help Center および File ExchangeData Types についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by