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!