I want to create an animation of hydrogen atom with one proton at centre and one electron revolving around. But instead of adding colour to it, I want to add image i.e.
plot3(x,y,z,'.','markersize',10,'r') Above code will give me a point at location (x,y,z) of color red. But instead of red color, I want an image in it uploaded below.
Is it possible with Octave?

x=linspace(0,1,10);y=sin(2*pi*x);z=cos(2*pi*x);scatter3(x,y,z,'ro','filled','SizeData',100);hold on;h=plot3(x, y,z,'wo','markersize',5);pause(0.01);h.MarkerHandle.Style = 'hbar';Note that hbar is an undocumented property