#include <iostream>
#include <cmath>
#include "gcp/util/common/Debug.h"
#include "gcp/util/common/DataType.h"
#include "gcp/util/common/ErrHandler.h"
#include "gcp/util/common/Logger.h"
#include "gcp/util/common/MonitorDataType.h"
#include "gcp/util/common/RegDescription.h"
#include "gcp/util/common/RegParser.h"
#include "gcp/matlab/common/MexParser.h"
#include "mex.h"
#include "matrix.h"
#include <sstream>
Go to the source code of this file.
|
#define | MXPRINT(statement) |
|
#define | MXPRINTN(statement) |
|
Tagged: Thu Sep 15 09:37:48 PDT 2005
- Version
- :
- Revision:
- 1.4
,
- Date:
- 2010/03/03 18:23:12
- Author
- Erik Leitch
#define MXPRINT |
( |
|
statement | ) |
|
Value:{\
std::ostringstream os;\
os.str("");\
os << statement << std::endl;\
mexPrintf(os.str().c_str());\
}
#define MXPRINTN |
( |
|
statement | ) |
|
Value:{\
std::ostringstream os;\
os.str("");\
os << statement; \
mexPrintf(os.str().c_str());\
}