Johannes Richter wrote: > Hello, > > I am new with octave, and I want to plot 3-dim points in an 3-dim coordinate system. > The points are like > > A= [130, 0.2, 8; 152, 0.13, 4.5; 148, 0.39, 7; 189, 0.22, 6.5] > > best regards scatter3 (A(:,1), A(:,2), A(:,3)) D.