IT++ Logo
Namespaces | Functions
itfile.cpp File Reference

Implementation of classes for the IT++ file format. More...

#include <itpp/base/itfile.h>

Go to the source code of this file.

Namespaces

namespace  itpp
 itpp namespace
 

Functions

it_ifile & itpp::operator>> (it_ifile &f, char &v)
 Read the char variable v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, bool &v)
 Read the bool variable v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, bin &v)
 Read the binary variable v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, short &v)
 Read the short variable v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, int &v)
 Read the integer variable v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, float &v)
 Read the float variable v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, double &v)
 Read the double variable v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, std::complex< float > &v)
 Read the float complex variable v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, std::complex< double > &v)
 Read the double complex variable v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, bvec &v)
 Read the bvec v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, svec &v)
 Read the svec v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, ivec &v)
 Read the ivec v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, vec &v)
 Read the vec v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, cvec &v)
 Read the cvec v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, std::string &str)
 Read the string str from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, bmat &m)
 Read the bmat m from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, smat &m)
 Read the smat m from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, imat &m)
 Read the imat m from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, mat &m)
 Read the mat m from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, cmat &m)
 Read the cmat m from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< bin > &v)
 Read the binary Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< short > &v)
 Read the short integer Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< int > &v)
 Read the integer Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< float > &v)
 Read the float Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< double > &v)
 Read the double Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< std::complex< float > > &v)
 Read the float complex Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< std::complex< double > > &v)
 Read the double complex Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< bvec > &v)
 Read the bvec Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< svec > &v)
 Read the svec Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< ivec > &v)
 Read the ivec Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< vec > &v)
 Read the vec Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< cvec > &v)
 Read the cvec Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< std::string > &v)
 Read the string Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< bmat > &v)
 Read the bmat Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< smat > &v)
 Read the bmat Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< imat > &v)
 Read the imat Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< mat > &v)
 Read the mat Array v from the it_ifile pointer.
 
it_ifile & itpp::operator>> (it_ifile &f, Array< cmat > &v)
 Read the cmat Array v from the it_ifile pointer.
 
it_file & itpp::operator<< (it_file &f, char x)
 Write the char variable x to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, bool x)
 Write the bool variable x to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, bin x)
 Write the binary variable x to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, short x)
 Write the short variable x to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, int x)
 Write the integer variable x to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, float x)
 Write the float variable x to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, double x)
 Write the double variable x to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, std::complex< float > x)
 Write the float complex variable x to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, std::complex< double > x)
 Write the double complex variable x to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const bvec &v)
 Write the bvec v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const svec &v)
 Write the svec v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const ivec &v)
 Write the ivec v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const vec &v)
 Write the vec v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const cvec &v)
 Write the cvec v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const std::string &str)
 Write the string str to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const bmat &m)
 Write the bmat m to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const smat &m)
 Write the smat m to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const imat &m)
 Write the imat m to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const mat &m)
 Write the mat m to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const cmat &m)
 Write the cmat m to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< bin > &v)
 Write the bin Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< short > &v)
 Write the short int Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< int > &v)
 Write the int Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< float > &v)
 Write the float Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< double > &v)
 Write the double Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< std::complex< float > > &v)
 Write the float complex Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< std::complex< double > > &v)
 Write the double complex Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< bvec > &v)
 Write the bvec Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< svec > &v)
 Write the svec Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< ivec > &v)
 Write the ivec Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< vec > &v)
 Write the vec Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< cvec > &v)
 Write the cvec Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< std::string > &v)
 Write the string Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< bmat > &v)
 Write the bmat Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< smat > &v)
 Write the smat Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< imat > &v)
 Write the imat Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< mat > &v)
 Write the mat Array v to the it_file pointer.
 
it_file & itpp::operator<< (it_file &f, const Array< cmat > &v)
 Write the cmat Array v to the it_file pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, char &v)
 Read the char variable v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, bin &v)
 Read the binary variable v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, short &v)
 Read the short variable v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, int &v)
 Read the integer variable v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, double &v)
 Read the double variable v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, float &v)
 Read the float variable v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, std::complex< float > &v)
 Read the float complex variable v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, std::complex< double > &v)
 Read the double complex variable v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, vec &v)
 Read the vec v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, ivec &v)
 Read the ivec v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, bvec &v)
 Read the bvec v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, cvec &v)
 Read the cvec v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, std::string &str)
 Read the string str from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, mat &m)
 Read the mat m from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, imat &m)
 Read the imat m from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, bmat &m)
 Read the bmat m from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, cmat &m)
 Read the cmat m from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< float > &v)
 Read the float Array v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< double > &v)
 Read the double Array v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< int > &v)
 Read the integer Array v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< bin > &v)
 Read the binary Array v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< std::complex< float > > &v)
 Read the float complex Array v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< std::complex< double > > &v)
 Read the double complex Array v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< vec > &v)
 Read the vec Array v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< ivec > &v)
 Read the ivec Array v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< bvec > &v)
 Read the bvec Array v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< cvec > &v)
 Read the cvec Array v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< std::string > &v)
 Read the string Array v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< mat > &v)
 Read the mat Array v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< imat > &v)
 Read the imat Array v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< bmat > &v)
 Read the bmat Array v from the it_ifile_old pointer.
 
it_ifile_old & itpp::operator>> (it_ifile_old &f, Array< cmat > &v)
 Read the cmat Array v from the it_ifile_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, char x)
 Write the char variable x to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, bin x)
 Write the binary variable x to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, short x)
 Write the short variable x to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, int x)
 Write the integer variable x to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, float x)
 Write the float variable x to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, double x)
 Write the double variable x to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, std::complex< float > x)
 Write the float complex variable x to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, std::complex< double > x)
 Write the double complex variable x to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const vec &v)
 Write the vec v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const ivec &v)
 Write the ivec v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const bvec &v)
 Write the bvec v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const cvec &v)
 Write the cvec v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const std::string &str)
 Write the string str to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const mat &m)
 Write the mat m to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const imat &m)
 Write the imat m to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const bmat &m)
 Write the bmat m to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const cmat &m)
 Write the cmat m to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< float > &v)
 Write the float Array v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< double > &v)
 Write the double Array v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< int > &v)
 Write the int Array v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< bin > &v)
 Write the bin Array v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< std::complex< float > > &v)
 Write the float complex Array v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< std::complex< double > > &v)
 Write the double complex Array v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< vec > &v)
 Write the vec Array v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< ivec > &v)
 Write the ivec Array v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< bvec > &v)
 Write the bvec Array v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< cvec > &v)
 Write the cvec Array v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< std::string > &v)
 Write the string Array v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< mat > &v)
 Write the mat Array v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< imat > &v)
 Write the imat Array v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< bmat > &v)
 Write the bmat Array v to the it_file_old pointer.
 
it_file_old & itpp::operator<< (it_file_old &f, const Array< cmat > &v)
 Write the cmat Array v to the it_file_old pointer.
 

Detailed Description

Implementation of classes for the IT++ file format.

Author
Tony Ottosson, Tobias Ringstrom and Adam Piatyszek

Copyright (C) 1995-2010 (see AUTHORS file for a list of contributors)

This file is part of IT++ - a C++ library of mathematical, signal processing, speech processing, and communications classes and functions.

IT++ 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 3 of the License, or (at your option) any later version.

IT++ 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 IT++. If not, see http://www.gnu.org/licenses/.


Definition in file itfile.cpp.

SourceForge Logo

Generated on Sat Jul 6 2013 10:54:26 for IT++ by Doxygen 1.8.2