Splitting of 1 coloumn into multiple coloumn

2 views (last 30 days)
I have coloumn which have 98640 number. I want to make 137 coloumn from it and want to pick max. value in each coloumn?

Accepted Answer

Adam
Adam on 12 Oct 2016
myMat = reshape( myVec, [], 137 );
maxVals = max( myMat );
  3 Comments
Anas Rao
Anas Rao on 12 Oct 2016
Edited: Anas Rao on 12 Oct 2016
@ Adam Thankyou its working

Sign in to comment.

More Answers (0)

Categories

Find more on Statistics and Machine Learning Toolbox in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!