Effacer les filtres
Effacer les filtres

How to discard entries from a matrix

1 vue (au cours des 30 derniers jours)
Iftekharuddin Syed
Iftekharuddin Syed le 12 Nov 2020
Commenté : Setsuna Yuuki. le 12 Nov 2020
There is a matrix A (size:12x1000)
I want to extract entires after the 100th value, that means all the values before 100(i.e.1 to 99) are discarded. And the resulting matrix contains only values from 100th column to 1000th column.
Can anyone help me with the code.
  1 commentaire
Setsuna Yuuki.
Setsuna Yuuki. le 12 Nov 2020
A = ones(12,1000); % 12x1000 matrix
B = A(:,100:1000); % A(1-----12,100 -------> 1000)

Connectez-vous pour commenter.

Réponse acceptée

Steven Lord
Steven Lord le 12 Nov 2020

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by