?? my_function_p.c
字號:
#include <stdio.h>#include <string.h>#include <math.h>#include "matlab.h"#include "multpkg.h"/* * Function prototype; the MATLAB Compiler creates mlfMy_function * from my_function.m */int main (int argc, char *argv[]) /* Programmer written coded to callmlfMy_function */{ mxArray *my_cpu; int rank; rank=(int)atoi(argv[1]); /* fprintf(stdout, " rank: %d\r\n", rank); */ multpkgInitialize(); my_cpu=mlfScalar(rank); /* Call the mlfMy_function function. */ mlfMy_function(my_cpu); multpkgTerminate(); return(0);}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -