From: Arjen M. <arj...@wl...> - 2004-08-10 08:02:39
|
" (Walter Harms)" wrote: > > hi list, > i am looking for a way to plot isolines. so far i understand > is the way plpoin3(). therefor you need z[x][y]. the problem > is i have data for x=0...6000,y=0...9000. a simple field would > become very expensive exspecialy if i have only 2500 point in total (uneven distributed). > > Is there a way to plot a "3D field" like plploin(N,x,y,z) ? > > regards, > walter > > In addition to Alan's reply, the need for array elements z[x][y] does not necessarily mean that you need data for every integral value of x and y, as you seem to imply. plpoin3() expects individual points (x[i],y[i],z[i]) (i=0,...,N). You may want to look at plcont() for filled contours for instance, which takes a matrix z[nx][ny]. Regards, Arjen |