plot - ploting Gamma(Z) with maple -


how 1 plot absolute value of $|\gamma(z)|$ maple? in wiki figure: http://de.wikipedia.org/wiki/gammafunktion#mediaviewer/file:gamma_abs_3d.png

the command plots:-complexplot3d intended convenient way of obtaining such plots (using z instead of plot3d command x+i*y, , putting in labels automatically).

p := plots:-complexplot3d( abs(gamma(z)), z=-4-4*i..4+4*i,                            view=[-4..4,-4..4,0..6], orientation=[-120,75] ): 

for reason, surface stored in structure p gets blue color overrides shading scheme.

p; 

enter image description here

if remove color substructure underlying shading scheme (which change in original call, using shading option) revealed.

subsindets(p,specfunc(anything,color),u->null); 

enter image description here

i submit bug report heavy-handed blue coloring.


Comments

Popular posts from this blog

javascript - how to protect a flash video from refresh? -

android - Associate same looper with different threads -

visual studio 2010 - Connect to informix database windows form application -