Using Octave language to plot data in 3D
Source code name: "canvas3d_jasymca1.m"
Programming language: Octave
Topic: Plots/3D
DMelt Version 1. Last modified: 05/19/2016. License: Free
https://datamelt.org/code/cache/canvas3d_jasymca1_6435.m
To run this script using the DMelt IDE, copy the above URL link to the menu [File]→[Read script from URL] of the DMelt IDE.



syms x,y
x=0:0.3:10; y=sin(x); z=cos(x);
plot3d("minx=-5;maxx=10;miny=-5;maxy=10;minz=-5;maxz=5;")
draw3d(x,y,z)