functionincsharp.txt
来自「MATLAB C# Book. This book is a great tut」· 文本 代码 · 共 25 行
TXT
25 行
[ DllImport( "matrixcomputationslib.dll ", CallingConvention = CallingConvention.Cdecl)]
public static extern void matrixcomputationslibInitialize();
[ DllImport( "matrixcomputationslib.dll ", CallingConvention = CallingConvention.Cdecl)]
public static extern void matrixcomputationslibTerminate();
[ DllImport( "matrixcomputationslib.dll ", CallingConvention = CallingConvention.Cdecl)]
public static extern void mlfMydet(int nargout, ref IntPtr y, IntPtr a);
[ DllImport( "matrixcomputationslib.dll ", CallingConvention = CallingConvention.Cdecl)]
public static extern void mlfMyinv(int nargout, ref IntPtr y, IntPtr a);
[ DllImport( "matrixcomputationslib.dll ", CallingConvention = CallingConvention.Cdecl)]
public static extern void mlfMyminus(int nargout, ref IntPtr y, IntPtr a, IntPtr b);
[ DllImport( "matrixcomputationslib.dll ", CallingConvention = CallingConvention.Cdecl)]
public static extern void mlfMymtimes(int nargout, ref IntPtr y, IntPtr a, IntPtr b);
[ DllImport( "matrixcomputationslib.dll ", CallingConvention = CallingConvention.Cdecl)]
public static extern void mlfMyplus(int nargout, ref IntPtr y, IntPtr a, IntPtr b);
[ DllImport( "matrixcomputationslib.dll ", CallingConvention = CallingConvention.Cdecl)]
public static extern void mlfMytranspose(int nargout, ref IntPtr y, IntPtr x);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?