首页 热点资讯 义务教育 高等教育 出国留学 考研考公

怎么在matlab回归结果中显示 显著性水平

发布网友 发布时间:2022-04-23 05:28

我来回答

1个回答

热心网友 时间:2023-11-06 18:33

function output = lprintf(prtdat,crtdat,info,file)
% PURPOSE: Prints a matrix of data with a criteria-based symbol next
% to each element. Data are formatted globally or column-wise,
% as specified. Designed for indicating significance levels of
% parameter estimates.
%-----------------------------------------------------------------
% USAGE: output = lprintf(prtdat,crtdat,info,fid)
% where:
% prtdat (R,C) matrix of data to print
% crtdat (R,C) matrix of data to use as criteria for symbols
% info structure variable (all optional): [default]
% info.crit vector of criteria, largest first [10%,5%,1%]
% info.symb vector of symbols (strings) [c,b,a]
% info.fmt scalar or C-vector of format strings ['%7.4f']
% info.lnnum vector indexing rows with horiz. lines [none]
% info.rname R-vector of strings with row names [none]
% info.cname C-vector of strings with column names [none]
% info.head vector of strings to put as header [none]
% info.tail vector of strings to put as footer [none]
%
% fid 'filename' for output. Screen if missing, none if file = 0
%-----------------------------------------------------------------
% RETURNS: output a string matrix with the results
%----------------------------------------------------------------
% NOTES:
% Symbol(i) assigned when crtdat(r,c) <= info.crit(i)
% The number of criteria is flexible. Default is 10%,5%,1% with
% corresponding symbols of \superscript c,b,a
%-----------------------------------------------------------------
% SEE ALSO: lprintf_d, lprint, mprint
%-----------------------------------------------------------------

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com