How to extract a value from a Row or Column vector?

60 views (last 30 days)
Im trying to take the 5th value of a randomly generated row or column vector. How would I write the code for that?
  1 Comment
Star Strider
Star Strider on 23 Jun 2020
See the documentation on Matrix Indexing for details.
Is this as homework assignment?

Sign in to comment.

Accepted Answer

Fangjun Jiang
Fangjun Jiang on 23 Jun 2020
Is this what you are looking for ?
MyVector=rand(100,1);
MyData=MyVector(5);

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices 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!