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

📄 mu_tresult_create.m

📁 时间序列分析中很用的源码,书的原名为时间序列分析的小波方法.
💻 M
字号:
function tr = MU_tresult_create(tcname, tfh)% MU_tresult_create -- Create a new test result struct (tresult_s).%%****f* lib.report/MU_tresult_create%% NAME%   MU_tresult_create -- Create a new test result struct (tresult_s).%% SYNPOSIS%   tr = MU_tresult_create(tcname, tfh)%% INPUTS%   * tcname      -- name of test case associated with test result (string).%   * tfh         -- function handle of test associated with test result (@tfh).%% OUTPUTS%   * tr          -- test result struct (tresult_s).%% DESCRIPTION%   Function creates and initializes a test result struct (tresult_s).%%   Test result struct has the following fields:%     * trstatus -- result of test execution.%     * tcname   -- name of associated test case.%     * testfh   -- function handle of test.%     * message  -- supplementary message associated with test execution.%% SEE ALSO%   %% TOOLBOX%     munit/munit%% CATEGORY%   MUNIT Library:  Reporting Functions%%***% AUTHOR%   Charlie Cornish%% CREATION DATE%   2004-Apr-28%% COPYRIGHT%%% CREDITS%%% REVISION%   $Revision: 83 $%%   $Id: MU_tresult_create.m 83 2005-02-15 01:02:14Z ccornish $tr.trstatus = NaN;tr.tcname = tcname;tr.testfh = tfh;tr.message = '';return

⌨️ 快捷键说明

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