Matrix consisting of sub-elements of another matrix

1 Ansicht (letzte 30 Tage)
Articat
Articat am 18 Feb. 2020
Kommentiert: Articat am 18 Feb. 2020
Say I have the following matrix:
x = [ 1 2 3 4 5 6 7 8 9]
If I want a matrix that consists of the following:
y = [1 2 4 5 9]
How would I go about doing this?

Akzeptierte Antwort

Matt J
Matt J am 18 Feb. 2020
Bearbeitet: Matt J am 18 Feb. 2020
By indexing,e.g.,
>> x = [ 1 2 3 4 5 6 7 8 9]*10;
>> y=x([1,2,4,5,9])
y =
10 20 40 50 90
  3 Kommentare
Matt J
Matt J am 18 Feb. 2020
There are lots of indexing techniques described at the link I gave you. For example, you can get every 3rd element with this syntax,
x=rand(1,137);
y=x(1:3:end);
You can also get all elements satisfying some condition with logical indexing, e.g.,
y=x(x>0.5);
Articat
Articat am 18 Feb. 2020
Checked out the link, was very helpful! thanks for your time

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by