⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 set.m

📁 MDPSAS工具箱是马里兰大学开发的
💻 M
字号:
function A = set(A,field,newval,key)% set.m Set method for waferprofile class. Called as%%                A = set(A,field,newval,key)%% INPUT PARAMETERS%%                A : a waferprofile object%            field : 'deltawaf, param, waferid, val'%           newval : new value%              key : key name if field = parameter (OPTIONAL)%                    if not specified, the entire param assocarry%                    is replaced with newvalswitch field        case 'deltawaf'        A.scalarfield = newval;            case 'param'        if nargin == 3            A.param = newval;        elseif nargin == 4            A.param = setval(A.param,newval,key);        end            case 'val'        A.scalarfield = setval(A.scalarfield,newval);            case 'waferid'        A.waferid = newval;            otherwise        warning('invalid field')end

⌨️ 快捷键说明

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