how can i replce numbers at the end of rows and coloumns in same metrix?

1 次查看(过去 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 个)

Titus Edelhofer
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

类别

Help CenterFile Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by