what does this command plots?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
plot(1:size(image,1) , mean(Image,2), 'g' );
1 Kommentar
Antworten (1)
the cyclist
am 24 Jan. 2017
Bearbeitet: the cyclist
am 24 Jan. 2017
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.)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!