in reply to Re^2: which function in PDL can do the same thing as matlab pcolor?
in thread which function in PDL can do the same thing as matlab pcolor?
use PDL::Graphics::TriD; $t = sequence(10)+1; $x = log($t)->dummy(1,10); $y = ($t**2)->dummy(0,10); $x = $x + $y/10; $z = $x+$y; points3d [$x,$y,$z];
|
|---|