How can I resize the matrix?

조회 수: 1 (최근 30일)
Rengin
Rengin 2015년 2월 16일
답변: Thorsten 2015년 2월 16일
Hello, Let's say I have the matrix as below:
A= [0 0 0 0 0;0 0 0 0 0;2 3 9 1 7;4 5 6 5 4;0 0 0 0 0] (It can be in different size too)
I want have:
B=[2 3 9 1 7; 4 5 6 5 4] out of A
How can I do that? Thx

채택된 답변

Thorsten
Thorsten 2015년 2월 16일
B = A(sum(A') ~= 0, :)

추가 답변 (0개)

카테고리

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