Azzera filtri
Azzera filtri

Clear a Matrix from a multidimensional Matrix at each iteration

2 visualizzazioni (ultimi 30 giorni)
Hello Everyone,
I want at each iteration, to clear the matrix corresponding to this iteration from a multidimensional Matrix.
So here is my code.
A(:, :, 1, 1) = rand(5, 5);
A(:, :, 1, 2) = rand(5, 5);
A(:, :, 1, 3) = rand(5, 5);
whos
for i = 1:3
A(:, :, 1, i) = [];
whos
end
I don't understand why this doesn't work, normally A(:, :, 1, i) is a matrix so the command is correct, but it is telling me that a null assignement can have only one non-colon index.
Can anyone help me please to solve this problem ?
Thans in advance

Risposta accettata

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH il 20 Nov 2019
Matlab needs to make sure that all the indexes include all the values included, therefore it needs to be ":", I leave the solution:
A(:, :, 1, 1) = rand(5, 5);
A(:, :, 1, 2) = rand(5, 5);
A(:, :, 1, 3) = rand(5, 5);
whos;
for i=3:-1:1
A(:, :, :, i) = [];
whos
end

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by