query on box plot function?
1 次查看(过去 30 天)
显示 更早的评论
i am having a column vector of length 60000. i have to split it into 10 parts. so it becomes 10 column vectors and i have to use box plot for each column vectors.
i know the box plot function but how do i split my vector?
0 个评论
采纳的回答
Star Strider
2015-11-5
If ‘V’ is your (60000x1) vector, this works:
V = [1:60000]';
Vs = reshape(V, [], 10);
4 个评论
Star Strider
2015-11-5
My pleasure.
I had to create a column vector to test my code, so it would work without error in your application.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!