According to this, RGB triplet colors with values from 0 to 1 can be specified in Octave.
How to do that for a scatter plot of two vectors of equal length, where all points will have the same RGB color [0.5,0,0.5]?
I tried the following:
a = randn(100,1);
b = randn(100,1);
scatter(a,b,[0.5,0,0.5],'filled')
error: __scatter__: mx_el_or: nonconformant ar
guments (op1 is 100x1, op2 is 3x1)
error: called from
__scatter__ at line 52 column 7
scatter at line 86 column 10