what does this command plots?
이전 댓글 표시
plot(1:size(image,1) , mean(Image,2), 'g' );
댓글 수: 1
Adam
2017년 1월 24일
Surely the simplest way to understand is just to run the code?!
답변 (1개)
the cyclist
2017년 1월 24일
편집: the cyclist
2017년 1월 24일
0 개 추천
Assuming that image is an NxN array, this command plots a single green line that
- along the x-axis, goes from 1 to N
- along the y-axis, goes along the mean value of the 1st through Nth rows
(Also, I assume you mean that "image" and "Image" are the same variable, and just did a typo in capitalization.)
카테고리
도움말 센터 및 File Exchange에서 Blue에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!