mexmat.h
来自「非均匀有理B样条的matlab程序」· C头文件 代码 · 共 17 行
H
17 行
// Useful functions for accessing and manipulating matlab data structures.
// =======================================================================
#ifndef __MEXMAT_H
#define __MEXMAT_H
#include <math.h>
#include "mex.h"
double **vec2mat(double *vec, int nrows, int ncols);
double **matrix(int nrows, int ncols);
void freevec2mat(double **mat);
void freematrix(double **mat);
#endif // __MEXMAT_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?