Filter löschen
Filter löschen

How to discard entries from a matrix

1 Ansicht (letzte 30 Tage)
Iftekharuddin Syed
Iftekharuddin Syed am 12 Nov. 2020
Kommentiert: Setsuna Yuuki. am 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 Kommentar
Setsuna Yuuki.
Setsuna Yuuki. am 12 Nov. 2020
A = ones(12,1000); % 12x1000 matrix
B = A(:,100:1000); % A(1-----12,100 -------> 1000)

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Steven Lord
Steven Lord am 12 Nov. 2020

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays 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