필터 지우기
필터 지우기

Question regarding arranging matrix values

조회 수: 1 (최근 30일)
GOPIKA DINESH
GOPIKA DINESH 2021년 11월 30일
답변: Walter Roberson 2021년 11월 30일
I have a 22*1 matrix with end values zeros.
I want the last two zeros to occupy the first two rows with the other values occupying the respective places after the change.
Which command can i use?
Please help.
  댓글 수: 2
Walter Roberson
Walter Roberson 2021년 11월 30일
Do I understand correctly that you happen to know that Vector(22) is zero, and that there is at least one other zero in the vector but it is not necessarily currently located at Vector(21) ? And you want to move it from where-ever it is to Vector(21) with all of the other entries moving "down" to occupy the hole ?
If so then what do you want to do if there are multiple zeros? Which one of them do you want to move? The first of them? The last that is not already at Vector(21) ?
GOPIKA DINESH
GOPIKA DINESH 2021년 11월 30일
Only vector 21 and 22 are zero.
I want to shift them to the first and second rows.
The existing first, second.....20 vectors should start occupying from 3rd place to 22nd place.
Eg:Consider the matrix given below
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
0
0
I want to convert it as
0
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

댓글을 달려면 로그인하십시오.

답변 (2개)

Chunru
Chunru 2021년 11월 30일
% a 22*1 matrix with end values zeros.
x = rand(22, 1); x(end-5:end)=0;
x
x = 22×1
0.5377 0.2918 0.7060 0.3794 0.5667 0.8483 0.6654 0.0483 0.9393 0.0060
% the last two zeros to occupy the first two rows with
% the other values occupying the respective places after the change.
x = x([end-1:end 1:end-2])
x = 22×1
0 0 0.5377 0.2918 0.7060 0.3794 0.5667 0.8483 0.6654 0.0483

Walter Roberson
Walter Roberson 2021년 11월 30일
circshift()

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by