Clear Filters
Clear Filters

How to discard entries from a matrix

1 view (last 30 days)
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 Comment
Setsuna Yuuki.
Setsuna Yuuki. on 12 Nov 2020
A = ones(12,1000); % 12x1000 matrix
B = A(:,100:1000); % A(1-----12,100 -------> 1000)

Sign in to comment.

Accepted Answer

Steven Lord
Steven Lord on 12 Nov 2020

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!