field_init.m

来自「FIELD II 是B超的matlab仿真程序。 执行 先运行 fie」· M 代码 · 共 29 行

M
29
字号
%  Procedure for initializing the Field II program system. Must be %  the first routine that is called before using the system.%%  Calling:  field_init (suppress);%%  Return:   nothing.%%  Input:  suppress: An optional argument suppress with a value %                    of zero can be given to suppress the%                    display of the initial field screen.%                    No ACII ouput will be given, if the argument%                    is -1. Debug messages will be written if%		     enable by field_debug, and all error messages%		     will also be printed.%%  Version 1.2, January 20, 1999 by Joergen Arendt Jensenfunction res = field_init (suppress)%  Call the C-part of the program to initialize it  if (nargin==1)    Mat_field (5001,suppress);  else    Mat_field (5001,1);    end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?