search for: x_min

Displaying 3 results from an estimated 3 matches for "x_min".

Did you mean: i_min
2013 Nov 04
0
[LLVMdev] debug metadata for variable length arrays ?
...for (j=0; j<n+3; j++) aaa[i][j] = (i+j*n)%1023; return aaa[n-1][0]; } int main(int argc, char** argv) { return vla(argc+5); } How do I express range for 'aaa' array ? I would need this for Fortran like languages where bounds can be defined as: SUBROUTINE foo(x_min,x_max,y_min,y_max, & aaa & ) IMPLICIT NONE INTEGER :: x_min,x_max,y_min,y_max REAL(KIND=8), DIMENSION(x_min-2:x_max+2,y_min-2:y_max+2) :: aaa ... Any advice on how to use debug metadata to generate DWARF for t...
2009 Jul 20
3
Histograms on a log scale
Dear All, I would like to be able to plot histograms/densities on a semi-log or log-log scale. I found several suggestions online http://tolstoy.newcastle.edu.au/R/help/05/09/12044.html https://stat.ethz.ch/pipermail/r-help/2002-June/022295.html http://www.harding.edu/fmccown/R/#histograms Now, consider the code snippet taken from http://www.harding.edu/fmccown/R/#histograms # Get a random
2010 May 18
4
scaling with relative units in plots or retrieving axes limits in plots
Dears, a way to define x and y positions in plots in relative numbers (e.g in fractions between 0 and 1 referring to relative positions inside the plot region) would really help me. One example I would need this to would be to add text via text() to a plot always at a defined spot, e.g the upper left corner. Until now I always determined maximum x and y values and used those, but defining