📄 matlab_bgl_types.h
字号:
#ifndef MATLAB_BGL_TYPES_H
#define MATLAB_BGL_TYPES_H
/*
* David Gleich
* 19 February 2007
* Copyright, Stanford University, 2007
*/
/**
* @file matlab_bgl_types.h
* Implement a series of types for the matlab_bgl project to support
* large sparse matrices on 64-bit platforms.
*/
#ifdef MATLAB_BGL_LARGE_ARRAYS
#include <stdlib.h>
typedef size_t mbglIndex;
#else
typedef int mbglIndex;
#endif // MATLAB_BGL_LARGE_ARRAYS
#endif /* MATLAB_BGL_TYPES_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -