필터 지우기
필터 지우기

query on box plot function?

조회 수: 1 (최근 30일)
Heartrin
Heartrin 2015년 11월 5일
댓글: Star Strider 2015년 11월 5일
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?

채택된 답변

Star Strider
Star Strider 2015년 11월 5일
If ‘V’ is your (60000x1) vector, this works:
V = [1:60000]';
Vs = reshape(V, [], 10);
  댓글 수: 4
Heartrin
Heartrin 2015년 11월 5일
oh ok. mine is already a column vector so no problem. thank you so much.
Star Strider
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 CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by