00001 package org.math.plot.plotObjects;
00002
00003 import static java.lang.Math.*;
00004
00010 public class Base {
00011
00012 public final static String STRINGS = "str";
00013
00014 public final static String LINEAR = "lin";
00015
00016 public final static String LOGARITHM = "log";
00017
00018 public double[][] baseCoords;
00019
00020 protected double[] precisionUnit;
00021
00022 public double[] roundXmin;
00023
00024 public double[] roundXmax;
00025
00026 protected double[] trueXmin;
00027
00028 protected double[] trueXmax;
00029
00030 public int dimension;
00031
00032 public String[] axesScales;
00033
00034 public Base(double[] Xmi, double[] Xma, String[] scales) {
00035 trueXmin = Xmi;
00036 trueXmax = Xma;
00037 dimension = trueXmin.length;
00038 axesScales = scales;
00039 init(trueXmin.length);
00040 setRoundBounds(trueXmin, trueXmax);
00041 resetCoords();
00042 }
00043
00044 private void init(int d) {
00045 precisionUnit = new double[d];
00046 roundXmin = new double[d];
00047 roundXmax = new double[d];
00048 trueXmin = new double[d];
00049 trueXmax = new double[d];
00050 }
00051
00052 private void resetCoords() {
00053 baseCoords = new double[dimension + 1][];
00054 for (int i = 0; i < baseCoords.length; i++) {
00055 baseCoords[i] = (double[]) (roundXmin.clone());
00056 if (i > 0)
00057 baseCoords[i][i - 1] = roundXmax[i - 1];
00058 }
00059 }
00060
00061
00062
00063
00064
00065
00066
00067 private void setPrecisionUnit(int i, double Xmi, double Xma) {
00068 if (Xma - Xmi > 0) {
00069 precisionUnit[i] = pow(10, floor(log(Xma - Xmi) / log(10)));
00070 } else {
00071 precisionUnit[i] = 1;
00072 }
00073
00074 }
00075
00076 public void setAxesScales(String[] scales) {
00077 axesScales = scales;
00078 setRoundBounds(trueXmin, trueXmax);
00079 resetCoords();
00080 }
00081
00082 public void setAxesScales(int i, String scale) {
00083 axesScales[i] = scale;
00084 setRoundBounds(trueXmin, trueXmax);
00085 resetCoords();
00086 }
00087
00088 public double[][] getCoords() {
00089 return baseCoords;
00090 }
00091
00092
00093
00094
00095
00096 public String[] getAxesScales() {
00097 return axesScales;
00098 }
00099
00100 public String getAxeScale(int i) {
00101 return axesScales[i];
00102 }
00103
00104 public double[] getMinBounds() {
00105 return roundXmin;
00106 }
00107
00108 public double[] getMaxBounds() {
00109 return roundXmax;
00110 }
00111
00112 public double[] getPrecisionUnit() {
00113 return precisionUnit;
00114 }
00115
00116
00117
00118
00119
00120 private void setBounds(int i, double Xmi, double Xma) {
00121 if ((Xmi <= 0) && (axesScales[i].equalsIgnoreCase(LOGARITHM))) {
00122 throw new IllegalArgumentException("Error while bounding dimension " + (i + 1) + " : bounds [" + Xmi + "," + Xma
00123 + "] are incompatible with Logarithm scale.");
00124 }
00125 if (Xmi == Xma) {
00126 Xmi = Xma - 1;
00127 }
00128 if (Xmi > Xma) {
00129 throw new IllegalArgumentException("Error while bounding dimension " + (i + 1) + " : min " + Xmi + " must be < to max " + Xma);
00130 }
00131 roundXmin[i] = Xmi;
00132 roundXmax[i] = Xma;
00133 resetCoords();
00134 }
00135
00136
00137
00138
00139
00140
00141 public void setFixedBounds(int i, double Xmi, double Xma) {
00142 setPrecisionUnit(i, Xmi, Xma);
00143 setBounds(i, Xmi, Xma);
00144 }
00145
00146 public void setFixedBounds(double[] Xmi, double[] Xma) {
00147 for (int i = 0; i < Xmi.length; i++) {
00148 setFixedBounds(i, Xmi[i], Xma[i]);
00149 }
00150 }
00151
00152 public void roundBounds(int i) {
00153 setPrecisionUnit(i, trueXmin[i], trueXmax[i]);
00154 if (axesScales[i].equalsIgnoreCase(LOGARITHM)) {
00155 setBounds(i, pow(10, floor(log(trueXmin[i]) / log(10))), pow(10, ceil(log(trueXmax[i]) / log(10))));
00156 } else if (axesScales[i].equalsIgnoreCase(LINEAR)||axesScales[i].equalsIgnoreCase(STRINGS)) {
00157 setBounds(i, precisionUnit[i] * (floor(trueXmin[i] / precisionUnit[i])), precisionUnit[i] * (ceil(trueXmax[i] / precisionUnit[i])));
00158 }
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175 }
00176
00177 public void setRoundBounds(int i, double Xmi, double Xma) {
00178 trueXmin[i] = Xmi;
00179 trueXmax[i] = Xma;
00180 roundBounds(i);
00181 }
00182
00183 public void setRoundBounds(double[] Xmi, double[] Xma) {
00184 for (int i = 0; i < Xmi.length; i++) {
00185 trueXmin[i] = Xmi[i];
00186 trueXmax[i] = Xma[i];
00187 roundBounds(i);
00188 }
00189 }
00190
00191 public void includeInBounds(int dim, double XY) {
00192 for (int i = 0; i < roundXmin.length; i++) {
00193 if (i == dim)
00194 if (XY < trueXmin[i])
00195 trueXmin[i] = XY;
00196 }
00197 for (int i = 0; i < roundXmax.length; i++) {
00198 if (i == dim)
00199 if (XY > trueXmax[i])
00200 trueXmax[i] = XY;
00201 }
00202 roundBounds(dim);
00203 }
00204
00205 public void includeInBounds(double[] XY) {
00206 for (int i = 0; i < roundXmin.length; i++) {
00207 if (XY[i] < trueXmin[i])
00208 trueXmin[i] = XY[i];
00209 }
00210 for (int i = 0; i < roundXmax.length; i++) {
00211 if (XY[i] > trueXmax[i])
00212 trueXmax[i] = XY[i];
00213 }
00214 setRoundBounds(trueXmin, trueXmax);
00215 }
00216
00217
00218
00219
00220
00221 public boolean authorizedLogScale(int i) {
00222
00223 if (roundXmin[i] > 0) {
00224 return true;
00225 } else {
00226 return false;
00227 }
00228 }
00229
00230 public String toString() {
00231 StringBuffer s = new StringBuffer();
00232 for (int i = 0; i < baseCoords.length; i++) {
00233 s.append("[");
00234 for (int j = 0; j < baseCoords[i].length; j++)
00235 s.append(baseCoords[i][j] + ",");
00236 s.deleteCharAt(s.length() - 1);
00237 s.append("]");
00238 }
00239 return s.toString();
00240 }
00241 }