필터 지우기
필터 지우기

store last m elemnts of a matrix to another matrix

조회 수: 1 (최근 30일)
saharsahar
saharsahar 2012년 2월 24일
Hi all, is there any MATLAB function to store the last m elemnts of a matrix to another matrix?
Thanks

채택된 답변

Sean de Wolski
Sean de Wolski 2012년 2월 24일
B = A(end-(m-1):end);

추가 답변 (1개)

Krishnendu Mukherjee
Krishnendu Mukherjee 2012년 2월 24일
suppose A=[1 2 3 4 5 6 7 8 9 10] last 2 element are to be stored i=1; for j=m:size(A(1,:)) Anew(1,i)=A(1,j) end
this is if your matrix is of one row. but u hv nt mention the dimension of the matrix

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by