#include <itpp/base/matfunc.h>
#include <itpp/base/schur.h>
#include <itpp/base/converters.h>
#include <limits>
Go to the source code of this file.
Namespaces | |
namespace | itpp |
Functions | |
cmat | sqrtm (const mat &A) |
Square root of the real square matrix A . | |
cmat | sqrtm (const cmat &A) |
Square root of the complex square matrix A . | |
template int | length (const vec &v) |
Extern Template instantiation of length. | |
template int | length (const cvec &v) |
Extern Template instantiation of length. | |
template int | length (const svec &v) |
Extern Template instantiation of length. | |
template int | length (const ivec &v) |
Extern Template instantiation of length. | |
template int | length (const bvec &v) |
Extern Template instantiation of length. | |
template double | sum (const vec &v) |
Extern Template instantiation of sum. | |
template std::complex< double > | sum (const cvec &v) |
Extern Template instantiation of sum. | |
template short | sum (const svec &v) |
Extern Template instantiation of sum. | |
template int | sum (const ivec &v) |
Extern Template instantiation of sum. | |
template bin | sum (const bvec &v) |
Extern Template instantiation of sum. | |
template double | sum_sqr (const vec &v) |
Extern Template instantiation of sum_sqr. | |
template std::complex< double > | sum_sqr (const cvec &v) |
Extern Template instantiation of sum_sqr. | |
template short | sum_sqr (const svec &v) |
Extern Template instantiation of sum_sqr. | |
template int | sum_sqr (const ivec &v) |
Extern Template instantiation of sum_sqr. | |
template bin | sum_sqr (const bvec &v) |
Extern Template instantiation of sum_sqr. | |
template vec | cumsum (const vec &v) |
Extern Template instantiation of cumsum. | |
template cvec | cumsum (const cvec &v) |
Extern Template instantiation of cumsum. | |
template svec | cumsum (const svec &v) |
Extern Template instantiation of cumsum. | |
template ivec | cumsum (const ivec &v) |
Extern Template instantiation of cumsum. | |
template bvec | cumsum (const bvec &v) |
Extern Template instantiation of cumsum. | |
template double | prod (const vec &v) |
Extern Template instantiation of product. | |
template std::complex< double > | prod (const cvec &v) |
Extern Template instantiation of product. | |
template short | prod (const svec &v) |
Extern Template instantiation of product. | |
template int | prod (const ivec &v) |
Extern Template instantiation of product. | |
template bin | prod (const bvec &v) |
Extern Template instantiation of product. | |
template vec | cross (const vec &v1, const vec &v2) |
Extern Template instantiation of cross. | |
template ivec | cross (const ivec &v1, const ivec &v2) |
Extern Template instantiation of cross. | |
template svec | cross (const svec &v1, const svec &v2) |
Extern Template instantiation of cross. | |
template vec | reverse (const vec &in) |
Extern Template instantiation of reverse. | |
template cvec | reverse (const cvec &in) |
Extern Template instantiation of reverse. | |
template svec | reverse (const svec &in) |
Extern Template instantiation of reverse. | |
template ivec | reverse (const ivec &in) |
Extern Template instantiation of reverse. | |
template bvec | reverse (const bvec &in) |
Extern Template instantiation of reverse. | |
template vec | repeat (const vec &v, int norepeats) |
Extern Template instantiation of repeat. | |
template cvec | repeat (const cvec &v, int norepeats) |
Extern Template instantiation of repeat. | |
template svec | repeat (const svec &v, int norepeats) |
Extern Template instantiation of repeat. | |
template ivec | repeat (const ivec &v, int norepeats) |
Extern Template instantiation of repeat. | |
template bvec | repeat (const bvec &v, int norepeats) |
Extern Template instantiation of repeat. | |
template vec | apply_function (float(*f)(float), const vec &data) |
Extern Template instantiation of apply_function. | |
template vec | apply_function (double(*f)(double), const vec &data) |
Extern Template instantiation of apply_function. | |
template cvec | apply_function (std::complex< double >(*f)(std::complex< double >), const cvec &data) |
Extern Template instantiation of apply_function. | |
template svec | apply_function (short(*f)(short), const svec &data) |
Extern Template instantiation of apply_function. | |
template ivec | apply_function (int(*f)(int), const ivec &data) |
Extern Template instantiation of apply_function. | |
template bvec | apply_function (bin(*f)(bin), const bvec &data) |
Extern Template instantiation of apply_function. | |
template ivec | zero_pad (const ivec &v, int n) |
Extern Template instantiation of zero_pad. | |
template vec | zero_pad (const vec &v, int n) |
Extern Template instantiation of zero_pad. | |
template cvec | zero_pad (const cvec &v, int n) |
Extern Template instantiation of zero_pad. | |
template bvec | zero_pad (const bvec &v, int n) |
Extern Template instantiation of zero_pad. | |
template ivec | zero_pad (const ivec &v) |
Extern Template instantiation of zero_pad. | |
template vec | zero_pad (const vec &v) |
Extern Template instantiation of zero_pad. | |
template cvec | zero_pad (const cvec &v) |
Extern Template instantiation of zero_pad. | |
template bvec | zero_pad (const bvec &v) |
Extern Template instantiation of zero_pad. | |
template mat | zero_pad (const mat &, int, int) |
Extern Template instantiation of zero_pad. | |
template cmat | zero_pad (const cmat &, int, int) |
Extern Template instantiation of zero_pad. | |
template imat | zero_pad (const imat &, int, int) |
Extern Template instantiation of zero_pad. | |
template bmat | zero_pad (const bmat &, int, int) |
Extern Template instantiation of zero_pad. | |
template vec | sum (const mat &m, int dim) |
Extern Template instantiation of sum. | |
template cvec | sum (const cmat &m, int dim) |
Extern Template instantiation of sum. | |
template svec | sum (const smat &m, int dim) |
Extern Template instantiation of sum. | |
template ivec | sum (const imat &m, int dim) |
Extern Template instantiation of sum. | |
template bvec | sum (const bmat &m, int dim) |
Extern Template instantiation of sum. | |
template vec | sum_sqr (const mat &m, int dim) |
Extern Template instantiation of sum_sqr. | |
template cvec | sum_sqr (const cmat &m, int dim) |
Extern Template instantiation of sum_sqr. | |
template svec | sum_sqr (const smat &m, int dim) |
Extern Template instantiation of sum_sqr. | |
template ivec | sum_sqr (const imat &m, int dim) |
Extern Template instantiation of sum_sqr. | |
template bvec | sum_sqr (const bmat &m, int dim) |
Extern Template instantiation of sum_sqr. | |
template mat | cumsum (const mat &m, int dim) |
Extern Template instantiation of cumsum. | |
template cmat | cumsum (const cmat &m, int dim) |
Extern Template instantiation of cumsum. | |
template smat | cumsum (const smat &m, int dim) |
Extern Template instantiation of cumsum. | |
template imat | cumsum (const imat &m, int dim) |
Extern Template instantiation of cumsum. | |
template bmat | cumsum (const bmat &m, int dim) |
Extern Template instantiation of cumsum. | |
template vec | prod (const mat &m, int dim) |
Extern Template instantiation of product. | |
template cvec | prod (const cmat &v, int dim) |
template svec | prod (const smat &m, int dim) |
Extern Template instantiation of product. | |
template ivec | prod (const imat &m, int dim) |
Extern Template instantiation of product. | |
template vec | diag (const mat &in) |
Extern Template instantiation of diag. | |
template cvec | diag (const cmat &in) |
Extern Template instantiation of diag. | |
template void | diag (const vec &in, mat &m) |
Extern Template instantiation of diag. | |
template void | diag (const cvec &in, cmat &m) |
Extern Template instantiation of diag. | |
template mat | diag (const vec &v, const int K) |
Extern Template instantiation of diag. | |
template cmat | diag (const cvec &v, const int K) |
Extern Template instantiation of diag. | |
template mat | bidiag (const vec &, const vec &) |
Extern Template instantiation of bidiag. | |
template cmat | bidiag (const cvec &, const cvec &) |
Extern Template instantiation of bidiag. | |
template void | bidiag (const vec &, const vec &, mat &) |
Extern Template instantiation of bidiag. | |
template void | bidiag (const cvec &, const cvec &, cmat &) |
Extern Template instantiation of bidiag. | |
template void | bidiag (const mat &, vec &, vec &) |
Extern Template instantiation of bidiag. | |
template void | bidiag (const cmat &, cvec &, cvec &) |
Extern Template instantiation of bidiag. | |
template mat | tridiag (const vec &main, const vec &, const vec &) |
Extern Template instantiation of tridiag. | |
template cmat | tridiag (const cvec &main, const cvec &, const cvec &) |
Extern Template instantiation of tridiag. | |
template void | tridiag (const vec &main, const vec &, const vec &, mat &) |
Extern Template instantiation of tridiag. | |
template void | tridiag (const cvec &main, const cvec &, const cvec &, cmat &) |
Extern Template instantiation of tridiag. | |
template void | tridiag (const mat &m, vec &, vec &, vec &) |
Extern Template instantiation of tridiag. | |
template void | tridiag (const cmat &m, cvec &, cvec &, cvec &) |
Extern Template instantiation of tridiag. | |
template double | trace (const mat &in) |
Extern Template instantiation of trace. | |
template std::complex< double > | trace (const cmat &in) |
Extern Template instantiation of trace. | |
template short | trace (const smat &in) |
Extern Template instantiation of trace. | |
template int | trace (const imat &in) |
Extern Template instantiation of trace. | |
template bin | trace (const bmat &in) |
Extern Template instantiation of trace. | |
template void | transpose (const mat &m, mat &out) |
Extern Template instantiation of transpose. | |
template void | transpose (const cmat &m, cmat &out) |
Extern Template instantiation of transpose. | |
template void | transpose (const smat &m, smat &out) |
Extern Template instantiation of transpose. | |
template void | transpose (const imat &m, imat &out) |
Extern Template instantiation of transpose. | |
template void | transpose (const bmat &m, bmat &out) |
Extern Template instantiation of transpose. | |
template mat | transpose (const mat &m) |
Extern Template instantiation of transpose. | |
template cmat | transpose (const cmat &m) |
Extern Template instantiation of transpose. | |
template smat | transpose (const smat &m) |
Extern Template instantiation of transpose. | |
template imat | transpose (const imat &m) |
Extern Template instantiation of transpose. | |
template bmat | transpose (const bmat &m) |
Extern Template instantiation of transpose. | |
template void | hermitian_transpose (const mat &m, mat &out) |
Extern Template instantiation of hermitian transpose. | |
template void | hermitian_transpose (const cmat &m, cmat &out) |
Extern Template instantiation of hermitian transpose. | |
template void | hermitian_transpose (const smat &m, smat &out) |
Extern Template instantiation of hermitian transpose. | |
template void | hermitian_transpose (const imat &m, imat &out) |
Extern Template instantiation of hermitian transpose. | |
template void | hermitian_transpose (const bmat &m, bmat &out) |
Extern Template instantiation of hermitian transpose. | |
template mat | hermitian_transpose (const mat &m) |
Extern Template instantiation of hermitian transpose. | |
template cmat | hermitian_transpose (const cmat &m) |
Extern Template instantiation of hermitian transpose. | |
template smat | hermitian_transpose (const smat &m) |
Extern Template instantiation of hermitian transpose. | |
template imat | hermitian_transpose (const imat &m) |
Extern Template instantiation of hermitian transpose. | |
template bmat | hermitian_transpose (const bmat &m) |
Extern Template instantiation of hermitian transpose. | |
template mat | repeat (const mat &m, int norepeats) |
Extern Template instantiation of repeat. | |
template cmat | repeat (const cmat &m, int norepeats) |
Extern Template instantiation of repeat. | |
template smat | repeat (const smat &m, int norepeats) |
Extern Template instantiation of repeat. | |
template imat | repeat (const imat &m, int norepeats) |
Extern Template instantiation of repeat. | |
template bmat | repeat (const bmat &m, int norepeats) |
Extern Template instantiation of repeat. | |
template mat | apply_function (float(*f)(float), const mat &data) |
Extern Template instantiation of apply_function. | |
template mat | apply_function (double(*f)(double), const mat &data) |
Extern Template instantiation of apply_function. | |
template cmat | apply_function (std::complex< double >(*f)(std::complex< double >), const cmat &data) |
Extern Template instantiation of apply_function. | |
template smat | apply_function (short(*f)(short), const smat &data) |
Extern Template instantiation of apply_function. | |
template imat | apply_function (int(*f)(int), const imat &data) |
Extern Template instantiation of apply_function. | |
template bmat | apply_function (bin(*f)(bin), const bmat &data) |
Extern Template instantiation of apply_function. | |
template vec | rvectorize (const mat &m) |
Extern Template instantiation of rvectorize. | |
template cvec | rvectorize (const cmat &m) |
Extern Template instantiation of rvectorize. | |
template ivec | rvectorize (const imat &m) |
Extern Template instantiation of rvectorize. | |
template bvec | rvectorize (const bmat &m) |
Extern Template instantiation of rvectorize. | |
template vec | cvectorize (const mat &m) |
Extern Template instantiation of cvectorize. | |
template cvec | cvectorize (const cmat &m) |
Extern Template instantiation of cvectorize. | |
template ivec | cvectorize (const imat &m) |
Extern Template instantiation of cvectorize. | |
template bvec | cvectorize (const bmat &m) |
Extern Template instantiation of cvectorize. | |
template mat | reshape (const mat &m, int rows, int cols) |
Extern Template instantiation of reshape. | |
template cmat | reshape (const cmat &m, int rows, int cols) |
Extern Template instantiation of reshape. | |
template imat | reshape (const imat &m, int rows, int cols) |
Extern Template instantiation of reshape. | |
template bmat | reshape (const bmat &m, int rows, int cols) |
Extern Template instantiation of reshape. | |
template mat | reshape (const vec &m, int rows, int cols) |
Extern Template instantiation of reshape. | |
template cmat | reshape (const cvec &m, int rows, int cols) |
Extern Template instantiation of reshape. | |
template imat | reshape (const ivec &m, int rows, int cols) |
Extern Template instantiation of reshape. | |
template bmat | reshape (const bvec &m, int rows, int cols) |
Extern Template instantiation of reshape. | |
template vec | upsample (const vec &v, int usf) |
Extern Template instantiation of upsample. | |
template cvec | upsample (const cvec &v, int usf) |
Extern Template instantiation of upsample. | |
template svec | upsample (const svec &v, int usf) |
Extern Template instantiation of upsample. | |
template ivec | upsample (const ivec &v, int usf) |
Extern Template instantiation of upsample. | |
template bvec | upsample (const bvec &v, int usf) |
Extern Template instantiation of upsample. | |
template mat | upsample (const mat &v, int usf) |
Extern Template instantiation of upsample. | |
template cmat | upsample (const cmat &v, int usf) |
Extern Template instantiation of upsample. | |
template smat | upsample (const smat &v, int usf) |
Extern Template instantiation of upsample. | |
template imat | upsample (const imat &v, int usf) |
Extern Template instantiation of upsample. | |
template bmat | upsample (const bmat &v, int usf) |
Extern Template instantiation of upsample. | |
template void | upsample (const vec &v, int usf, vec &u) |
Extern Template instantiation of upsample. | |
template void | upsample (const cvec &v, int usf, cvec &u) |
Extern Template instantiation of upsample. | |
template void | upsample (const svec &v, int usf, svec &u) |
Extern Template instantiation of upsample. | |
template void | upsample (const ivec &v, int usf, ivec &u) |
Extern Template instantiation of upsample. | |
template void | upsample (const bvec &v, int usf, bvec &u) |
Extern Template instantiation of upsample. | |
template void | upsample (const mat &v, int usf, mat &u) |
Extern Template instantiation of upsample. | |
template void | upsample (const cmat &v, int usf, cmat &u) |
Extern Template instantiation of upsample. | |
template void | upsample (const smat &v, int usf, smat &u) |
Extern Template instantiation of upsample. | |
template void | upsample (const imat &v, int usf, imat &u) |
Extern Template instantiation of upsample. | |
template void | upsample (const bmat &v, int usf, bmat &u) |
Extern Template instantiation of upsample. | |
template vec | lininterp (const vec &v, int usf) |
Extern Template instantiation of liniterp. | |
template cvec | lininterp (const cvec &v, int usf) |
Extern Template instantiation of liniterp. | |
template mat | lininterp (const mat &v, int usf) |
Extern Template instantiation of liniterp. | |
template cmat | lininterp (const cmat &v, int usf) |
Extern Template instantiation of liniterp. | |
template void | lininterp (const vec &v, int usf, vec &u) |
Extern Template instantiation of liniterp. | |
template void | lininterp (const cvec &v, int usf, cvec &u) |
Extern Template instantiation of liniterp. | |
template void | lininterp (const mat &v, int usf, mat &u) |
Extern Template instantiation of liniterp. | |
template void | lininterp (const cmat &v, int usf, cmat &u) |
Extern Template instantiation of liniterp. | |
template mat | lininterp (const mat &m, const double f_base, const double f_ups, const int nrof_samples, const double t_start) |
Extern Template instantiation of liniterp. | |
template cmat | lininterp (const cmat &m, const double f_base, const double f_ups, const int nrof_samples, const double t_start) |
Extern Template instantiation of liniterp. | |
template vec | lininterp (const vec &v, const double f_base, const double f_ups, const int nrof_samples, const double t_start) |
Extern Template instantiation of liniterp. | |
template cvec | lininterp (const cvec &v, const double f_base, const double f_ups, const int nrof_samples, const double t_start) |
Extern Template instantiation of liniterp. |
-------------------------------------------------------------------------
IT++ - C++ library of mathematical, signal processing, speech processing, and communications classes and functions
Copyright (C) 1995-2007 (see AUTHORS file for a list of contributors)
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-------------------------------------------------------------------------
Definition in file matfunc.cpp.
|
Extern Template instantiation of length.
|
|
Extern Template instantiation of length.
|
|
Extern Template instantiation of length.
|
|
Extern Template instantiation of length.
|
|
Extern Template instantiation of length.
|
|
Extern Template instantiation of sum.
|
|
Extern Template instantiation of sum.
|
|
Extern Template instantiation of sum.
|
|
Extern Template instantiation of sum.
|
|
Extern Template instantiation of sum.
|
|
Extern Template instantiation of sum_sqr.
|
|
Extern Template instantiation of sum_sqr.
|
|
Extern Template instantiation of sum_sqr.
|
|
Extern Template instantiation of sum_sqr.
|
|
Extern Template instantiation of sum_sqr.
|
|
Extern Template instantiation of cumsum.
|
|
Extern Template instantiation of cumsum.
|
|
Extern Template instantiation of cumsum.
|
|
Extern Template instantiation of cumsum.
|
|
Extern Template instantiation of cumsum.
|
|
Extern Template instantiation of product.
|
|
Extern Template instantiation of product.
|
|
Extern Template instantiation of product.
|
|
Extern Template instantiation of product.
|
|
Extern Template instantiation of product.
|
|
Extern Template instantiation of cross.
|
|
Extern Template instantiation of cross.
|
|
Extern Template instantiation of cross.
|
|
Extern Template instantiation of reverse.
|
|
Extern Template instantiation of reverse.
|
|
Extern Template instantiation of reverse.
|
|
Extern Template instantiation of reverse.
|
|
Extern Template instantiation of reverse.
|
|
Extern Template instantiation of repeat.
|
|
Extern Template instantiation of repeat.
|
|
Extern Template instantiation of repeat.
|
|
Extern Template instantiation of repeat.
|
|
Extern Template instantiation of repeat.
|
|
Extern Template instantiation of apply_function.
|
|
Extern Template instantiation of apply_function.
|
|
Extern Template instantiation of apply_function.
|
|
Extern Template instantiation of apply_function.
|
|
Extern Template instantiation of apply_function.
|
|
Extern Template instantiation of apply_function.
|
|
Extern Template instantiation of zero_pad.
|
|
Extern Template instantiation of zero_pad.
|
|
Extern Template instantiation of zero_pad.
|
|
Extern Template instantiation of zero_pad.
|
|
Extern Template instantiation of zero_pad.
|
|
Extern Template instantiation of zero_pad.
|
|
Extern Template instantiation of zero_pad.
|
|
Extern Template instantiation of zero_pad.
|
|
Extern Template instantiation of zero_pad.
|
|
Extern Template instantiation of zero_pad.
|
|
Extern Template instantiation of zero_pad.
|
|
Extern Template instantiation of zero_pad.
|
|
Extern Template instantiation of sum.
|
|
Extern Template instantiation of sum.
|
|
Extern Template instantiation of sum.
|
|
Extern Template instantiation of sum.
|
|
Extern Template instantiation of sum.
|
|
Extern Template instantiation of sum_sqr.
|
|
Extern Template instantiation of sum_sqr.
|
|
Extern Template instantiation of sum_sqr.
|
|
Extern Template instantiation of sum_sqr.
|
|
Extern Template instantiation of sum_sqr.
|
|
Extern Template instantiation of cumsum.
|
|
Extern Template instantiation of cumsum.
|
|
Extern Template instantiation of cumsum.
|
|
Extern Template instantiation of cumsum.
|
|
Extern Template instantiation of cumsum.
|
|
Extern Template instantiation of product.
|
|
Extern Template instantiation of product.
|
|
Extern Template instantiation of product.
|
|
Extern Template instantiation of diag.
|
|
Extern Template instantiation of diag.
|
|
Extern Template instantiation of diag.
|
|
Extern Template instantiation of diag.
|
|
Extern Template instantiation of diag.
|
|
Extern Template instantiation of diag.
|
|
Extern Template instantiation of bidiag.
|
|
Extern Template instantiation of bidiag.
|
|
Extern Template instantiation of bidiag.
|
|
Extern Template instantiation of bidiag.
|
|
Extern Template instantiation of bidiag.
|
|
Extern Template instantiation of bidiag.
|
|
Extern Template instantiation of tridiag.
|
|
Extern Template instantiation of tridiag.
|
|
Extern Template instantiation of tridiag.
|
|
Extern Template instantiation of tridiag.
|
|
Extern Template instantiation of tridiag.
|
|
Extern Template instantiation of tridiag.
|
|
Extern Template instantiation of trace.
|
|
Extern Template instantiation of trace.
|
|
Extern Template instantiation of trace.
|
|
Extern Template instantiation of trace.
|
|
Extern Template instantiation of trace.
|
|
Extern Template instantiation of transpose.
|
|
Extern Template instantiation of transpose.
|
|
Extern Template instantiation of transpose.
|
|
Extern Template instantiation of transpose.
|
|
Extern Template instantiation of transpose.
|
|
Extern Template instantiation of transpose.
|
|
Extern Template instantiation of transpose.
|
|
Extern Template instantiation of transpose.
|
|
Extern Template instantiation of transpose.
|
|
Extern Template instantiation of transpose.
|
|
Extern Template instantiation of hermitian transpose.
|
|
Extern Template instantiation of hermitian transpose.
|
|
Extern Template instantiation of hermitian transpose.
|
|
Extern Template instantiation of hermitian transpose.
|
|
Extern Template instantiation of hermitian transpose.
|
|
Extern Template instantiation of hermitian transpose.
|
|
Extern Template instantiation of hermitian transpose.
|
|
Extern Template instantiation of hermitian transpose.
|
|
Extern Template instantiation of hermitian transpose.
|
|
Extern Template instantiation of hermitian transpose.
|
|
Extern Template instantiation of repeat.
|
|
Extern Template instantiation of repeat.
|
|
Extern Template instantiation of repeat.
|
|
Extern Template instantiation of repeat.
|
|
Extern Template instantiation of repeat.
|
|
Extern Template instantiation of apply_function.
|
|
Extern Template instantiation of apply_function.
|
|
Extern Template instantiation of apply_function.
|
|
Extern Template instantiation of apply_function.
|
|
Extern Template instantiation of apply_function.
|
|
Extern Template instantiation of apply_function.
|
|
Extern Template instantiation of rvectorize.
|
|
Extern Template instantiation of rvectorize.
|
|
Extern Template instantiation of rvectorize.
|
|
Extern Template instantiation of rvectorize.
|
|
Extern Template instantiation of cvectorize.
|
|
Extern Template instantiation of cvectorize.
|
|
Extern Template instantiation of cvectorize.
|
|
Extern Template instantiation of cvectorize.
|
|
Extern Template instantiation of reshape.
|
|
Extern Template instantiation of reshape.
|
|
Extern Template instantiation of reshape.
|
|
Extern Template instantiation of reshape.
|
|
Extern Template instantiation of reshape.
|
|
Extern Template instantiation of reshape.
|
|
Extern Template instantiation of reshape.
|
|
Extern Template instantiation of reshape.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of upsample.
|
|
Extern Template instantiation of liniterp.
|
|
Extern Template instantiation of liniterp.
|
|
Extern Template instantiation of liniterp.
|
|
Extern Template instantiation of liniterp.
|
|
Extern Template instantiation of liniterp.
|
|
Extern Template instantiation of liniterp.
|
|
Extern Template instantiation of liniterp.
|
|
Extern Template instantiation of liniterp.
|
|
Extern Template instantiation of liniterp.
|
|
Extern Template instantiation of liniterp.
|
|
Extern Template instantiation of liniterp.
|
|
Extern Template instantiation of liniterp.
|
Generated on Fri Jan 11 08:51:39 2008 for IT++ by Doxygen 1.3.9.1