delete rows in 3d-matrix

10 Ansichten (letzte 30 Tage)
Tim
Tim am 7 Nov. 2012
Hi all,
How can I delete a row in a 3d matrix? I want to delete the upper row in the matrices: stuff(:,:,1:3)
stuff(:,:,1(:,1))=[]
doesn't work..
"Unbalanced or unexpected parenthesis or bracket."
Does anyone know the answer? Thanks.
Cheers,
T
  2 Kommentare
Jan
Jan am 7 Nov. 2012
What exactly is "the upper row"?
Image Analyst
Image Analyst am 7 Nov. 2012
Not sure what you mean. In 3D people talk about a "slice" or a "plane" not a row. You can't eliminate just row 1 of slices 1, 2, and 3 because then the array is no longer rectangular - it would have a notch or chunk out of it. But you can get rid of a whole slice at a time.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Tim
Tim am 8 Nov. 2012
Thought about this last night in bed and couldn't understand the stupid mindtwist I made, it's just simply:
stuff(1,:,:)=[]
And indeed it's the upper slice. My bad. Thanks anyway!
  1 Kommentar
Image Analyst
Image Analyst am 8 Nov. 2012
Normally slices are the last dimension, like Jan had. So I guess you're taking the left-most slice that lies in the (row, slice), or Y-Z plane, basically the left face of the data volume, at least according to how most people think of it.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Jan
Jan am 7 Nov. 2012
stuff(:, :, 1) = []

Kategorien

Mehr zu Mathematics finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by