A tip that's been mentioned in the Forum many times : Open the Script Window Hold down the Shift and Ctrl key while selecting a menu option (Plot : Contour Plot : Contour - Color Fill for example) and if a script executes that option, then it types to the Script Window ( along with a menu ID ) rather than executing, and Code Builder may open to any file-based code.
If I do that for Profiles/Contour, I see that Origin runs : run.section(Plot3D,ContourColor)
You can just execute that line to plot your matrix.
Looking in Code Builder, I see in that section the command to plot is : worksheet -p 226 contour
I could customize a contour plot and save as a special template - MyContour.OTP - and plot it thusly :
worksheet -p 226 MyContour
There is also a generic mechanism of loading a template then filling the template as shown here :
%M = %H; // remember matrix window name (same as matrix data name) win -t plot MyContour; // Load a graph template layer -i %M; // Include a dataset in the layer layer -a; // rescale
|