PlotC[h_, s_, b_, a_, xmin_, xmax_, ymin_, ymax_, step_, AxesLab_] :=
Show[Graphics[
RasterArray[Table[
Hue[h, s, b , a],
{y, ymin + 0.0012, ymax, step},
{x, xmin + 0.0012, xmax, step}]]],
AspectRatio -> Automatic,
Axes -> True,
AxesStyle -> RGBColor[0, 0, 0],
Ticks -> {
Table[{0.1 + 50 i, xmin + 50 step i, 0.01},
{i, 0, (xmax - xmin)/(50 step)}],
Table[{0.1 + 50 i, ymin + 50 step i, 0.01},
{i, 0, (ymax - ymin)/(50 step)}]},
ImageSize -> (20 + (xmax - xmin)/step),
AxesLabel -> AxesLab]
![[不要]](/static/emoticons/u4e0du8981.png)
求大触改写成Raster,ParallelTable,ParallelArray的形式
@xzcyr