Aptech Systems, Inc. Worldwide Headquarters
Mailing Address:
PO Box 250
Black Diamond, WA 98010 USAStreet Address:
30741 Third Avenue #160
Black Diamond, WA 98010 USAPhone: 360.886.7100
FAX: 360.886.8922Ready to Get Started?
For Pricing and Distribution
Industry Solutions
Products
Resources
Support
Training & Events
Want more guidance while learning about the full functionality of GAUSS and its capabilities? Get in touch for in-person training or browse additional references below.
Tutorials
Step-by-step, informative lessons for those who want to dive into GAUSS and achieve their goals, fast.
Have a Specific Question?
Get a real answer from a real person
- Need Support?
Q&A: Register and Login
Support Plans
Premier Support and Platinum Premier Support are annually renewable membership programs that provide you with important benefits including technical support, product maintenance, and substantial cost-saving features for your GAUSS System or the GAUSS Engine.
User Forums
Join our community to see why our users are considered some of the most active and helpful in the industry!
Where to Buy
Available across the globe, you can have access to GAUSS no matter where you are.
Recent Tags
applications character vectors CMLMT covariance matrix dates dlibrary dllcall ECDF Editor error handling errors floating network GAUSS Engine Geometric mean graphics GUI hardware histogram hotkeys if statements installation Java API linux localization Matlab convert matlab translation matrices matrix initialization matrix manipulation Maxlik MaxLikMT Memory output pgraph graph PQG graphics RAM random numbers RedHat 6.1 simulation string functions strings threading threads loops Time Series writing dataRecent Questions
Features
Resources
How can I control the axis scale on my graphs in GAUSS 12?
1
I am making some graphs in GAUSS 12 with multiple subplots. I would like the scale to be the same on all of the plots. Is there an easy way to do this?
1 Answer
0
At the bottom of this post is GAUSS procedure that will control the extent of the x and y axes on your plots with the graphics for version 12 and beyond. You can either pass in two 2×1 vectors with the minimum and maximum value for the respective axes or you can pass in a vector of any length and it will scale the plot to include the smallest and largest elements of that vector. It should be called immediately after the graph is drawn. Here is a simple usage example:
x = seqa(1, 1, 10);
y = cos(x);
xrange = { -3, 12 };
yRange = { -2, 2 };
plotXY(x, y);
scalePlot(xRange, yRange);
proc(0) = scaleplot1(x,y);
struct plotControl MyPlot;
MyPlot = plotGetDefaults("xy");
//Turn off legend for this line
plotSetLegend(&MyPlot,"off");
//SetLineStyle to 0 so the line does not appear
plotSetLineStyle(&MyPlot,0);
//Draw an invisible line from smallest x and smallest y to
// the largest x and largest y.
plotAddXY(MyPlot,minc(x)|maxc(x),minc(y)|maxc(y));
//Reset SetLineStyle to show line
plotSetLineStyle(&MyPlot,1);
endp;

