How to trim two vectors of differing lengths
5 views (last 30 days)
Show older comments
Todd Simon
on 18 Aug 2016
Commented: Todd Simon
on 18 Aug 2016
If I have two vectors of varying lengths or rows, how do I trim the end of the larger vector so that both vectors are now of the same length? For example, if I have the below:
A = [0
1
2]
B = [0
1
2
3
4]
What I want is something like:
A = [0
1
2]
B = [0
1
2]
Thanks for the help in advance.
0 Comments
Accepted Answer
More Answers (0)
See Also
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!