unstudentize_d.m
来自「计量工具箱」· M 代码 · 共 25 行
M
25 行
% PURPOSE: demonstrate studentized and unstudentize functions%%% usage: unstudentize_d% demonstrate case of a vectorx = 1:20;xx = x';xstud = studentize(xx);xunstud = unstudentize(xstud,xx);in.cnames = strvcat('raw vector','studentized','unstudentized');mprint([xx,xstud,xunstud],in);% demonstrate case of a matrixx = 1:20;xx = [x' x'.*x'];xstud = studentize(xx);xunstud = unstudentize(xstud,xx);in.cnames = strvcat('x1raw','x2raw','x1stud','x2stud','x1unstud','x2unstud');mprint([xx,xstud,xunstud],in);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?