OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:coefficients
(Results
176 - 200
of
1013
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/Eigen/src/Eigen2Support/Geometry/
RotationBase.h
29
/** the scalar type of the
coefficients
*/
88
* \param Scalar the numeric type of the matrix
coefficients
/external/eigen/doc/
C07_TutorialReductionsVisitorsBroadcasting.dox
27
returning the sum of all the
coefficients
inside a given matrix or array.
38
The \em trace of a matrix, as returned by the function \c trace(), is the sum of the diagonal
coefficients
and can equivalently be computed <tt>a.diagonal().sum()</tt>.
43
The (Euclidean a.k.a. \f$\ell^2\f$) squared norm of a vector can be obtained \link MatrixBase::squaredNorm() squaredNorm() \endlink. It is equal to the dot product of the vector by itself, and equivalently to the sum of squared absolute values of its
coefficients
.
49
If you want other \f$\ell^p\f$ norms, use the \link MatrixBase::lpNorm() lpNnorm<p>() \endlink method. The template parameter \a p can take the special value \a Infinity if you want the \f$\ell^\infty\f$ norm, which is the maximum of the absolute values of the
coefficients
.
65
- \link DenseBase::all() all() \endlink returns \b true if all of the
coefficients
in a given Matrix or Array evaluate to \b true .
66
- \link DenseBase::any() any() \endlink returns \b true if at least one of the
coefficients
in a given Matrix or Array evaluates to \b true .
67
- \link DenseBase::count() count() \endlink returns the number of
coefficients
in a given Matrix or Array that evaluate to \b true.
69
These are typically used in conjunction with the coefficient-wise comparison and equality operators provided by Array. For instance, <tt>array > 0</tt> is an %Array of the same size as \c array , with \b true at those positions where the corresponding coefficient of \c array is positive. Thus, <tt>(array > 0).all()</tt> tests whether all
coefficients
of \c array are positive. This can be seen in the following example:
C00_QuickStartGuide.dox
68
The second example starts by declaring a 3-by-3 matrix \c m which is initialized using the \link DenseBase::Random(Index,Index) Random() \endlink method with random values between -1 and 1. The next line applies a linear mapping such that the values are between 10 and 110. The function call \link DenseBase::Constant(Index,Index,const Scalar&) MatrixXd::Constant\endlink(3,3,1.2) returns a 3-by-3 matrix expression having all
coefficients
equal to 1.2. The rest is standard arithmetics.
70
The next line of the \c main function introduces a new type: \c VectorXd. This represents a (column) vector of arbitrary size. Here, the vector \c v is created to contain \c 3
coefficients
which are left unitialized. The one but last line uses the so-called comma-initializer, explained in \ref TutorialAdvancedInitialization, to set all
coefficients
of the vector \c v to be as follows:
83
Now look back at the second example program. We presented two versions of it. In the version in the left column, the matrix is of type \c MatrixXd which represents matrices of arbitrary size. The version in the right column is similar, except that the matrix is of type \c Matrix3d, which represents matrices of a fixed size (here 3-by-3). Because the type already encodes the size of the matrix, it is not necessary to specify the size in the constructor; compare <tt>MatrixXd m(3,3)</tt> with <tt>Matrix3d m</tt>. Similarly, we have \c VectorXd on the left (arbitrary size) versus \c Vector3d on the right (fixed size). Note that here the
coefficients
of vector \c v are directly set in the constructor, though the same syntax of the left example could be used too.
I05_FixedSizeVectorizable.dox
28
The array of
coefficients
of a fixed-size Eigen object is a plain "static array", it is not dynamically allocated. For example, the data behind a Matrix4f is just a "float array[16]".
/external/eigen/test/eigen2/
eigen2_visitor.cpp
19
// construct a random matrix where all
coefficients
are different
65
// construct a random vector where all
coefficients
are different
/external/eigen/test/
visitor.cpp
20
// construct a random matrix where all
coefficients
are different
67
// construct a random vector where all
coefficients
are different
/external/libgsm/src/
code.c
37
* LARc[1..8] parameters which are the coded LAR
coefficients
and
43
word * LARc, /* [0..7] LAR
coefficients
OUT */
/external/speex/libspeex/
lsp.h
12
Coefficients
(LPC) to Line Spectral Pair (LSP) and back. Note that the
13
LSP
coefficients
are not in radians format but in the x domain of the
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
weight_a.cpp
100
a = LPC
coefficients
(Word16)
102
a_exp = Spectral expanded LPC
coefficients
(Word16)
105
a_exp points to the updated spectral expanded LPC
coefficients
119
This function calculates the spectral expansion for the LP
coefficients
of
137
Word16 a[], // (i) : a[M+1] LPC
coefficients
(M=10)
139
Word16 a_exp[] // (o) : Spectral expanded LPC
coefficients
176
Word16 a[], /* (i) : a[M+1] LPC
coefficients
(M=10) */
178
Word16 a_exp[] /* (o) : Spectral expanded LPC
coefficients
*/
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
calc_en.h
49
Purpose : calculation of energy
coefficients
for quantizers
106
* PURPOSE: calculation of several energy
coefficients
for unfiltered
124
Word16 frac_en[], /* o : energy
coefficients
(3), fraction part, Q15 */
125
Word16 exp_en[], /* o : energy
coefficients
(3), exponent part, Q0 */
133
* PURPOSE: calculation of several energy
coefficients
for filtered
136
* Compute
coefficients
need for the quantization and the optimum
161
Word16 frac_coeff[],/* o : energy
coefficients
(5), fraction part, Q15 */
162
Word16 exp_coeff[], /* o : energy
coefficients
(5), exponent part, Q0 */
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_DecodeBlockCoef_Inter.c
29
* Decodes the INTER block
coefficients
. This function performs inverse
31
* clipping on each step) on the
coefficients
. The results (residuals) are
omxVCM4P2_EncodeVLCZigzag_IntraDCVLC.c
34
* Performs zigzag scan and VLC encoding of AC and DC
coefficients
for one
37
*
coefficients
, as described in [ISO14496-2], subclause 7.4.1.4, "Intra DC
omxVCM4P2_PredictReconCoefIntra.c
36
* aligned on a 4-byte boundary. The output
coefficients
are
57
*
coefficients
(QF) of the current block
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
threshold.fs
30
// Store our
coefficients
here
65
//Now we need to normalize the weights because all our
coefficients
need to add up to one
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
threshold.fs
30
// Store our
coefficients
here
65
//Now we need to normalize the weights because all our
coefficients
need to add up to one
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
threshold.fs
30
// Store our
coefficients
here
65
//Now we need to normalize the weights because all our
coefficients
need to add up to one
/external/chromium_org/third_party/freetype/src/cff/
cffobjs.h
106
FT_Fixed xx, xy; /* transformation matrix
coefficients
*/
/external/chromium_org/third_party/opus/src/silk/
A2NLSF.c
28
/* Conversion between prediction filter
coefficients
and NLSFs */
110
/* Compute Normalized Line Spectral Frequencies (NLSFs) from whitening filter
coefficients
*/
111
/* If not all roots are found, the a_Q16
coefficients
are bandwidth expanded until convergence. */
114
opus_int32 *a_Q16, /* I/O Monic whitening filter
coefficients
in Q16 [d] */
/external/chromium_org/third_party/skia/src/utils/
SkCubicInterval.cpp
56
// First compute our
coefficients
in X
/external/chromium_org/ui/base/gestures/
gesture_configuration.cc
44
//
Coefficients
for a function that computes fling acceleration.
/external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrixBase.h
49
/**< This is equal to the number of
coefficients
, i.e. the number of
114
/** \returns the number of
coefficients
, which is \a rows()*cols().
120
/** \returns the number of nonzero
coefficients
which is in practice the number
121
* of stored
coefficients
. */
/external/freetype/src/cff/
cffobjs.h
106
FT_Fixed xx, xy; /* transformation matrix
coefficients
*/
/external/libvpx/libvpx/test/
dct32x32_test.cc
159
<< "Error: 32x32 FDCT versions have mismatched
coefficients
";
163
<< "Error: 32x32 FDCT rd has mismatched
coefficients
";
198
<< "Error: 32x32 FDCT versions have mismatched
coefficients
";
201
<< "Error: 32x32 FDCT rd has mismatched
coefficients
";
/external/skia/src/utils/
SkCubicInterval.cpp
56
// First compute our
coefficients
in X
/external/srec/srec/cfront/
chelmel4.c
87
log_report("Cepstrum
coefficients
: ");
165
// cepdata *a, /* lpc
coefficients
*/
166
// cepdata *r, /* autocorrelation
coefficients
*/
200
// cepdata *c, /* cepstral
coefficients
*/
Completed in 1320 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>