Remove specific entry in a cell array

조회 수: 3 (최근 30일)
bbah
bbah 2019년 11월 21일
답변: JESUS DAVID ARIZA ROYETH 2019년 11월 21일
in my cell arrays the last number is a 0 or a -1. i want to delete only that value from every cell array
e.g
input:
element_row{1,1} = [1 10 18 24 31 40 0]
element_row{1,2} = [2 11 19 25 32 41 49 -1]
output:
element_row{1,1} = [1 10 18 24 31 40]
element_row{1,2} = [2 11 19 25 32 41 49]
thank you

채택된 답변

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019년 11월 21일
solution:
element_row{1,1} = [1 10 18 24 31 40 0]
element_row{1,2} = [2 11 19 25 32 41 49 -1]
element_row{1,1}(end)=[];
element_row{1,2}(end)=[];

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by