Creating vectors with components

4 views (last 30 days)
Manasa Tarigoppula
Manasa Tarigoppula on 21 Sep 2019
Answered: Bruno Luong on 21 Sep 2019
How do I create a 5-element column vector whose components are the squares of the elements of vector Row
  2 Comments
David Hill
David Hill on 21 Sep 2019
Look at transpose and basic matrix operations
Walter Roberson
Walter Roberson on 21 Sep 2019
What do you want to do if the vector Row is not exactly 5 elements long ?

Sign in to comment.

Answers (1)

Bruno Luong
Bruno Luong on 21 Sep 2019
r=[3 2 7 5 2]
r(1:min(5,end)).^2.'
or
r(1:min(5,end)).'.^2

Categories

Find more on Shifting and Sorting Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!