HomeSort by relevance Sort by last modified time
    Searched defs:elevations (Results 1 - 2 of 2) sorted by null

  /external/eigen/doc/snippets/
LLT_solve.cpp 4 VectorXf elevations = 2*samples.col(0) + 3*samples.col(1) + VectorXf::Random(12)*0.1; variable
5 // and let's solve samples * [x y]^T = elevations in least square sense:
7 = (samples.adjoint() * samples).llt().solve((samples.adjoint()*elevations));
  /frameworks/base/location/tests/locationtests/src/android/location/
SatelliteInfo.java 97 * Gernerate elevations array from svInfos
100 float[] elevations = new float[svInfos.size()]; local
102 elevations[i] = svInfos.get(i).mElevation;
104 return elevations;

Completed in 138 milliseconds