select first 15 from ans
2 views (last 30 days)
Show older comments
Kiruthiga Sekar
on 26 Apr 2019
Answered: Star Strider
on 26 Apr 2019
Hi,
When I execute a particular function, it produces 70 values in ans. But i want only first 15 values stored in a array variable. How do I do it?
TIA
0 Comments
Accepted Answer
Star Strider
on 26 Apr 2019
It appears that you are calling the function without an output assignment.
Call it as:
v = theFunction(x);
then:
v = v(1:15);
to keep only those elements you want.
0 Comments
More Answers (0)
See Also
Categories
Find more on Get Started with MATLAB 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!