
How to delete the last rows and columns?
    5 次查看(过去 30 天)
  
       显示 更早的评论
    
How to delete the last three rows and three columns from the following matrix without change N and then multiply the last off diagonal by 6?
then how can we store the new matrix?
M = zeros(N,N);
>> M(  1:1+N:N*N) = a;
>> M(N+1:1+N:N*N) = b;
>> M(  2:1+N:N*N-N) = c
M =
  -1   4   0   0   0   0   0   0   0   0
   2  -1   4   0   0   0   0   0   0   0
   0   2  -1   4   0   0   0   0   0   0
   0   0   2  -1   4   0   0   0   0   0
   0   0   0   2  -1   4   0   0   0   0
   0   0   0   0   2  -1   4   0   0   0
   0   0   0   0   0   2  -1   4   0   0
   0   0   0   0   0   0   2  -1   4   0
   0   0   0   0   0   0   0   2  -1   4
   0   0   0   0   0   0   0   0   2  -1
回答(0 个)
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Operating on Diagonal Matrices 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!