...indeed..no problems with Scilab 6.1.1
Thank you,
Philipp

Am Di., 4. Jan. 2022 um 12:22 Uhr schrieb Heinz Nabielek <
heinznabie...@me.com>:

> SurfPlot is no problem here.
> Scilab Version: 6.1.1.988271013
> macOS Catalina Version 10.15.7
> Heinz
>
>
>
>
> On 04.01.2022, at 09:29, P M <p.muehlm...@gmail.com> wrote:
>
> width = 900;
> height = 1500;
>
>
>
> x = linspace(1,width,width)
> y = linspace(1,height, height);
>
>
>
> for i = 1:width
>
>
> for j = 1:height
>
>
> z(i,j) = x(i)+y(j)
>
>
> end
> end
>
>
>
> //// normalization if necessary
> //zMin = min(z);
> //z = z - zMin;
> //zMax = max(z);
> //z = z .* 255 ./ zMax;
>
>
>
> f = figure();
> f.background = 256;
> f.color_map  = hotcolormap(256);
> surf(x,y,z');
> e = gce();
> e.thickness = 0
> printf("Reached end of code\n");
>
>
>
_______________________________________________
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users

Reply via email to