Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

Moving Specific Values In Matrix By One Column

1 visualizzazione (ultimi 30 giorni)
DANIEL PEARCE
DANIEL PEARCE il 28 Ott 2020
Chiuso: MATLAB Answer Bot il 20 Ago 2021
I have a 3x3 matrix in the form of X = [0 1 0; 0 0 1; 0 1 0]. If a value is equal to one, I want to shift it to the left by one column. So, X' should look something like X' = [1 0 0; 0 1 0; 1 0 0]. I'm having some trouble doing this, so any help would be appreciated. Thanks.

Risposte (1)

Mayank Bajpai
Mayank Bajpai il 30 Ott 2020
circshift(x,-1,2)

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by