We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c3bc40 commit 7f33d15Copy full SHA for 7f33d15
test/test.f90
@@ -104,6 +104,16 @@ program test
104
call plt%add_imshow(mat,xlim=[0.0_wp, 100.0_wp],ylim=[0.0_wp, 100.0_wp],istat=istat)
105
call plt%savefig('imshow.png', pyfile='imshow.py',istat=istat)
106
107
+ !wireframe plot:
108
+ call plt%initialize(grid=.true.,xlabel='x angle (rad)',&
109
+ ylabel='y angle (rad)',figsize=[10,10],&
110
+ title='Wireframe plot test', real_fmt='*',&
111
+ axisbelow=.false.,mplot3d=.true.,use_numpy=.true.)
112
+ call plt%plot_wireframe(x, y, z, label='', linestyle='-', &
113
+ cmap='bone', colorbar=.true.,&
114
+ istat=istat)
115
+ call plt%savefig('wireframe.png', pyfile='wireframe.py',istat=istat)
116
+
117
!histogram chart:
118
x = [0.194,0.501,-1.241,1.425,-2.217,-0.342,-0.979,0.909,0.994,0.101, &
119
-0.131,-0.627,0.463,1.404,0.036,-2.000,0.109,1.250,-1.035,-1.115, &
0 commit comments