-
Hi jcbowman,
Thanks for you response. I couldn't figure out the transforms for a 2x2 set of plots for some reason, but I did come up with another solution. I modified the shift() functions used on the figures so that the right and bottom edges of the bottom right plot aligned properly, which seems to work for what I need. I would still like to understand how to use the transform function...
2009-11-22 19:00:45 UTC in Asymptote
-
Sorry, the formatting is not coming through here. Here is the code with proper linebreaks.
import graph;
real margin=5mm;
// Import the data
// Plot limits
real p_min = 0.0;
real p_max = 4000.0;
picture pic1;
scale(pic1,Linear,Linear);
xlimits(pic1, 0.0, p_max);
ylimits(pic1, 0.0, p_max);
yaxis(pic1,"$q$ (kPa)",LeftRight,RightTicks(N=4));
xaxis(pic1,"$p$...
2009-11-22 01:19:53 UTC in Asymptote
-
Hi,
I'm trying to modify alignedaxis.asy to plot some data that I have. I have no problem plotting the data, but once I change the axes in the example, I lose the alignment. Here is what I have reduced the example to:
import graph;
real margin=5mm;
// Import the data
// Plot limits
real p_min = 0.0;
real p_max = 4000.0;
picture pic1;
scale(pic1,Linear,Linear);...
2009-11-22 01:16:06 UTC in Asymptote