[TOC]

scatter

Scatter plot

Usages

scatter(x, y)

scatter(x, y, c1, ..., cM)

scatter(x, y, c1, ..., cM, Name1, Value1, ..., NameN, ValueN)

Examples

Input
x = randn(1,100);
y = randn(1,100);

% Marker size of 6.0 and RGB values of 0,0,1.
scatter(x,y,6.0,[0 0 1])
Output

scatter1