how can i replce numbers at the end of rows and coloumns in same metrix?
    3 ビュー (過去 30 日間)
  
       古いコメントを表示
    
A=zeros(4) and i want to replce numbers at the end of 3rd,4th row and 3rd,4th coloumns. how can i do this?
1 件のコメント
  Dennie
      
 2015 年 10 月 7 日
				 A=zeros(4);
  %replace 3rd row
  A(3,:)=[1 2 3 4];
  %replace 3rd column
  A(:,3)=[1;2;3;4];
回答 (1 件)
  Titus Edelhofer
    
 2015 年 10 月 7 日
        Hi,
replacing is a question of indexing. Try
A(3:4, 3:4)
and you should see a 2x2 Matrix. Replace this by any other 2x2 matrix using =
A(3:4,3:4) = rand(2,2);
Titus
0 件のコメント
参考
カテゴリ
				Help Center および File Exchange で Spline Postprocessing についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!