@@ -43,11 +43,11 @@ F = [f(r*cospi(θ), r*sinpi(θ)) for r in r, θ in θ]
4343# We superpose a surface plot of $f$ on top of the grid:
4444X = [r* cospi (θ) for r in r, θ in θ]
4545Y = [r* sinpi (θ) for r in r, θ in θ]
46- scatter3d (vec (X), vec (Y), vec (0 F); markersize= 0.75 , markercolor= :red , size = ( 800 , 600 ) )
46+ scatter3d (vec (X), vec (Y), vec (0 F); markersize= 0.75 , markercolor= :red )
4747surface! (X, Y, F; legend= false , xlabel= " x" , ylabel= " y" , zlabel= " f" )
4848savefig (joinpath (GENFIGS, " zernike.html" ))
4949# ##```@raw html
50- # ##<object type="text/html" data="../zernike.html" style="width:100%;height:600px ;"></object>
50+ # ##<object type="text/html" data="../zernike.html" style="width:100%;height:400px ;"></object>
5151# ##```
5252
5353# We precompute a (generalized) Zernike--Chebyshev×Fourier plan:
@@ -101,11 +101,11 @@ F = [f(x[n], w[n]*z) for n in 1:N, z in z]
101101# We superpose a surface plot of $f$ on top of the grid:
102102X = [x for x in x, z in z]
103103Y = [w* z for w in w, z in z]
104- scatter3d (vec (X), vec (Y), vec (0 F); markersize= 0.75 , markercolor= :green , size = ( 800 , 600 ) )
104+ scatter3d (vec (X), vec (Y), vec (0 F); markersize= 0.75 , markercolor= :green )
105105surface! (X, Y, F; legend= false , xlabel= " x" , ylabel= " y" , zlabel= " f" )
106106savefig (joinpath (GENFIGS, " dunklxu.html" ))
107107# ##```@raw html
108- # ##<object type="text/html" data="../dunklxu.html" style="width:100%;height:600px ;"></object>
108+ # ##<object type="text/html" data="../dunklxu.html" style="width:100%;height:400px ;"></object>
109109# ##```
110110
111111# We precompute a Dunkl-Xu--Chebyshev plan:
0 commit comments