Remove specific entry in a cell array

2 次查看(过去 30 天)
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
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