📄 ylabel.c
字号:
/*
* MATLAB Compiler: 3.0
* Date: Sun May 13 16:47:41 2007
* Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on"
* "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integer_for_loops:on" "-O"
* "array_indexing:on" "-O" "optimize_conditionals:on" "-M" "-silentsetup" "-d"
* "d:/MATLAB6p5/work/nnToolKit/src" "-B" "csglcom:nnToolKit,nnToolKit,2.0"
* "-B" "sgl" "-m" "-W" "main" "-L" "C" "-t" "-T" "link:exe" "-h"
* "libmmfile.mlib" "-W" "mainhg" "libmwsglm.mlib" "-t" "-W"
* "comhg:nnToolKit,nnToolKit,2.0" "-T" "link:lib" "-h" "libmmfile.mlib" "-i"
* "-i" "D:/MATLAB6p5/work/nnToolKit/lmnet/LmSimu.m"
* "D:/MATLAB6p5/work/nnToolKit/lmnet/LmTrain.m"
* "D:/MATLAB6p5/work/nnToolKit/sofm/SofmSimu.m"
* "D:/MATLAB6p5/work/nnToolKit/sofm/SofmTrain.m"
*/
#include "ylabel.h"
#include "mwservices.h"
#include "libmatlbm.h"
#include "libmmfile.h"
static mxChar _array1_[35] = { 'I', 'n', 'c', 'o', 'r', 'r', 'e', 'c', 't',
' ', 'n', 'u', 'm', 'b', 'e', 'r', ' ', 'o',
'f', ' ', 'i', 'n', 'p', 'u', 't', ' ', 'a',
'r', 'g', 'u', 'm', 'e', 'n', 't', 's' };
static mxArray * _mxarray0_;
static mxChar _array3_[15] = { 'M', 'W', 'B', 'Y', 'P', 'A', 'S', 'S',
'_', 'y', 'l', 'a', 'b', 'e', 'l' };
static mxArray * _mxarray2_;
static mxChar _array5_[6] = { 'y', 'l', 'a', 'b', 'e', 'l' };
static mxArray * _mxarray4_;
static mxChar _array7_[9] = { 'F', 'o', 'n', 't', 'A', 'n', 'g', 'l', 'e' };
static mxArray * _mxarray6_;
static mxChar _array9_[8] = { 'F', 'o', 'n', 't', 'N', 'a', 'm', 'e' };
static mxArray * _mxarray8_;
static mxChar _array11_[8] = { 'F', 'o', 'n', 't', 'S', 'i', 'z', 'e' };
static mxArray * _mxarray10_;
static mxChar _array13_[10] = { 'F', 'o', 'n', 't', 'W',
'e', 'i', 'g', 'h', 't' };
static mxArray * _mxarray12_;
static mxChar _array15_[6] = { 's', 't', 'r', 'i', 'n', 'g' };
static mxArray * _mxarray14_;
void InitializeModule_ylabel(void) {
_mxarray0_ = mclInitializeString(35, _array1_);
_mxarray2_ = mclInitializeString(15, _array3_);
_mxarray4_ = mclInitializeString(6, _array5_);
_mxarray6_ = mclInitializeString(9, _array7_);
_mxarray8_ = mclInitializeString(8, _array9_);
_mxarray10_ = mclInitializeString(8, _array11_);
_mxarray12_ = mclInitializeString(10, _array13_);
_mxarray14_ = mclInitializeString(6, _array15_);
}
void TerminateModule_ylabel(void) {
mxDestroyArray(_mxarray14_);
mxDestroyArray(_mxarray12_);
mxDestroyArray(_mxarray10_);
mxDestroyArray(_mxarray8_);
mxDestroyArray(_mxarray6_);
mxDestroyArray(_mxarray4_);
mxDestroyArray(_mxarray2_);
mxDestroyArray(_mxarray0_);
}
static mxArray * Mylabel(int nargout_, mxArray * string, mxArray * varargin);
_mexLocalFunctionTable _local_function_table_ylabel
= { 0, (mexFunctionTableEntry *)NULL };
/*
* The function "mlfNYlabel" contains the nargout interface for the "ylabel"
* M-function from file "d:\matlab6p5\toolbox\matlab\graph2d\ylabel.m" (lines
* 1-41). This interface is only produced if the M-function uses the special
* variable "nargout". The nargout interface allows the number of requested
* outputs to be specified via the nargout argument, as opposed to the normal
* interface which dynamically calculates the number of outputs based on the
* number of non-NULL inputs it receives. This function processes any input
* arguments and passes them to the implementation version of the function,
* appearing above.
*/
mxArray * mlfNYlabel(int nargout, mxArray * string, ...) {
mxArray * varargin = NULL;
mxArray * hh = NULL;
mlfVarargin(&varargin, string, 0);
mlfEnterNewContext(0, -2, string, varargin);
hh = Mylabel(nargout, string, varargin);
mlfRestorePreviousContext(0, 1, string);
mxDestroyArray(varargin);
return mlfReturnValue(hh);
}
/*
* The function "mlfYlabel" contains the normal interface for the "ylabel"
* M-function from file "d:\matlab6p5\toolbox\matlab\graph2d\ylabel.m" (lines
* 1-41). This function processes any input arguments and passes them to the
* implementation version of the function, appearing above.
*/
mxArray * mlfYlabel(mxArray * string, ...) {
mxArray * varargin = NULL;
int nargout = 1;
mxArray * hh = NULL;
mlfVarargin(&varargin, string, 0);
mlfEnterNewContext(0, -2, string, varargin);
hh = Mylabel(nargout, string, varargin);
mlfRestorePreviousContext(0, 1, string);
mxDestroyArray(varargin);
return mlfReturnValue(hh);
}
/*
* The function "mlfVYlabel" contains the void interface for the "ylabel"
* M-function from file "d:\matlab6p5\toolbox\matlab\graph2d\ylabel.m" (lines
* 1-41). The void interface is only produced if the M-function uses the
* special variable "nargout", and has at least one output. The void interface
* function specifies zero output arguments to the implementation version of
* the function, and in the event that the implementation version still returns
* an output (which, in MATLAB, would be assigned to the "ans" variable), it
* deallocates the output. This function processes any input arguments and
* passes them to the implementation version of the function, appearing above.
*/
void mlfVYlabel(mxArray * string, ...) {
mxArray * varargin = NULL;
mxArray * hh = NULL;
mlfVarargin(&varargin, string, 0);
mlfEnterNewContext(0, -2, string, varargin);
hh = Mylabel(0, string, varargin);
mlfRestorePreviousContext(0, 1, string);
mxDestroyArray(varargin);
}
/*
* The function "mlxYlabel" contains the feval interface for the "ylabel"
* M-function from file "d:\matlab6p5\toolbox\matlab\graph2d\ylabel.m" (lines
* 1-41). The feval function calls the implementation version of ylabel through
* this function. This function processes any input arguments and passes them
* to the implementation version of the function, appearing above.
*/
void mlxYlabel(int nlhs, mxArray * plhs[], int nrhs, mxArray * prhs[]) {
mxArray * mprhs[2];
mxArray * mplhs[1];
int i;
if (nlhs > 1) {
mlfError(
mxCreateString(
"Run-time Error: File: ylabel Line: 1 Column: "
"1 The function \"ylabel\" was called with mor"
"e than the declared number of outputs (1)."),
NULL);
}
for (i = 0; i < 1; ++i) {
mplhs[i] = NULL;
}
for (i = 0; i < 1 && i < nrhs; ++i) {
mprhs[i] = prhs[i];
}
for (; i < 1; ++i) {
mprhs[i] = NULL;
}
mlfEnterNewContext(0, 1, mprhs[0]);
mprhs[1] = NULL;
mlfAssign(&mprhs[1], mclCreateVararginCell(nrhs - 1, prhs + 1));
mplhs[0] = Mylabel(nlhs, mprhs[0], mprhs[1]);
mlfRestorePreviousContext(0, 1, mprhs[0]);
plhs[0] = mplhs[0];
mxDestroyArray(mprhs[1]);
}
/*
* The function "Mylabel" is the implementation version of the "ylabel"
* M-function from file "d:\matlab6p5\toolbox\matlab\graph2d\ylabel.m" (lines
* 1-41). It contains the actual compiled code for that M-function. It is a
* static function and must only be called from one of the interface functions,
* appearing below.
*/
/*
* function hh = ylabel(string,varargin)
*/
static mxArray * Mylabel(int nargout_, mxArray * string, mxArray * varargin) {
mexLocalFunctionTable save_local_function_table_
= mclSetCurrentLocalFunctionTable(&_local_function_table_ylabel);
int nargin_ = mclNargin(-2, string, varargin, NULL);
mxArray * hh = NULL;
mxArray * h = NULL;
mxArray * ax = NULL;
mxArray * ans = NULL;
mclCopyArray(&string);
mclCopyArray(&varargin);
/*
* %YLABEL Y-axis label.
* % YLABEL('text') adds text beside the Y-axis on the current axis.
* %
* % YLABEL('text','Property1',PropertyValue1,'Property2',PropertyValue2,...)
* % sets the values of the specified properties of the ylabel.
* %
* % H = YLABEL(...) returns the handle to the text object used as the label.
* %
* % See also XLABEL, ZLABEL, TITLE, TEXT.
*
* % Copyright 1984-2002 The MathWorks, Inc.
* % $Revision: 5.13 $ $Date: 2002/04/08 21:44:38 $
*
* if nargin > 1 & (nargin-1)/2-fix((nargin-1)/2),
*/
{
mxArray * a_ = mclInitialize(mclBoolToArray(nargin_ > 1));
if (mlfTobool(a_)
&& mlfTobool(
mclAnd(
a_,
mclMinus(
mlfScalar(
svDoubleScalarRdivide((double) (nargin_ - 1), 2.0)),
mlfFix(
mlfScalar(
svDoubleScalarRdivide(
(double) (nargin_ - 1), 2.0))))))) {
mxDestroyArray(a_);
/*
* error('Incorrect number of input arguments')
*/
mlfError(_mxarray0_, NULL);
} else {
mxDestroyArray(a_);
}
/*
* end
*/
}
/*
*
* ax = gca;
*/
mlfAssign(&ax, mlfGca(NULL));
/*
*
* %---Check for bypass option
* if isappdata(ax,'MWBYPASS_ylabel')
*/
if (mlfTobool(mlfIsappdata(mclVv(ax, "ax"), _mxarray2_))) {
/*
* h = mwbypass(ax,'MWBYPASS_ylabel',string,varargin{:});
*/
mlfAssign(
&h,
mlfNGraph2d_private_mwbypass(
1,
mclVv(ax, "ax"),
_mxarray2_,
mclVa(string, "string"),
mlfIndexRef(
mclVa(varargin, "varargin"), "{?}", mlfCreateColonIndex()),
NULL));
/*
*
* %---Standard behavior
* else
*/
} else {
/*
* h = get(ax,'ylabel');
*/
mlfAssign(&h, mlfNGet(1, mclVv(ax, "ax"), _mxarray4_, NULL));
/*
*
* %Over-ride text objects default font attributes with
* %the Axes' default font attributes.
* set(h, 'FontAngle', get(ax, 'FontAngle'), ...
*/
mclAssignAns(
&ans,
mlfNSet(
0,
mclVv(h, "h"),
_mxarray6_,
mlfNGet(1, mclVv(ax, "ax"), _mxarray6_, NULL),
_mxarray8_,
mlfNGet(1, mclVv(ax, "ax"), _mxarray8_, NULL),
_mxarray10_,
mlfNGet(1, mclVv(ax, "ax"), _mxarray10_, NULL),
_mxarray12_,
mlfNGet(1, mclVv(ax, "ax"), _mxarray12_, NULL),
_mxarray14_,
mclVa(string, "string"),
mlfIndexRef(
mclVa(varargin, "varargin"), "{?}", mlfCreateColonIndex()),
NULL));
/*
* 'FontName', get(ax, 'FontName'), ...
* 'FontSize', get(ax, 'FontSize'), ...
* 'FontWeight', get(ax, 'FontWeight'), ...
* 'string', string, varargin{:});
* end
*/
}
/*
*
* if nargout > 0
*/
if (nargout_ > 0) {
/*
* hh = h;
*/
mlfAssign(&hh, mclVv(h, "h"));
/*
* end
*/
}
mclValidateOutput(hh, 1, nargout_, "hh", "ylabel");
mxDestroyArray(ans);
mxDestroyArray(ax);
mxDestroyArray(h);
mxDestroyArray(varargin);
mxDestroyArray(string);
mclSetCurrentLocalFunctionTable(save_local_function_table_);
return hh;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -