help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Plotting 2 3D functions on one plot ?


From: Juan Pablo Carbajal
Subject: Re: Plotting 2 3D functions on one plot ?
Date: Fri, 3 Jan 2020 04:09:04 +0100

There are plenty of functions to plot in 3D[1]
You need to select the one that accomplish what you want.
Then you need to write functions that convert your 3D objects into the
data format the selected function needs
Finally you need to call the plotting functions for the converted
objects after you have hold on the plot.

figure(1)
hold on
# call the 3d plotting function on object one
# call the 3d plotting function on object two
# fix axes, camera position, lights, view, annotations, etc

I hope my abstract description leads you somewhere.

[1] 
https://octave.org/doc/interpreter/Three_002dDimensional-Plots.html#Three_002dDimensional-Plots



reply via email to

[Prev in Thread] Current Thread [Next in Thread]