📄 regex02.m
字号:
function RegEx02(X,y,b)
% Plots results for Forward Stepwise Algorithm, with False Discovery Rate Threshold,
% against the true underlying model.
%Find sparse solutions, with true model unknown
[bhatFDR, activationHist, tHist]=SolveStepwiseFDR(X,y,0);
% Plot Results
figure;
plot(1:200,bhatFDR,'-');
hold on
plot(1:200,b,'.r')
title('Forward Stepwise (with False Discovery Rate Threshold) Regression Solution')
xlabel('Variable Number')
ylabel('Coefficient Value')
legend('Estimated Coefficient Values','True Coefficient Values')
%
% Copyright (c) 2006. Victoria Stodden
%
%
% Part of SparseLab Version:100
% Created Tuesday March 28, 2006
% This is Copyrighted Material
% For Copying permissions see COPYING.m
% Comments? e-mail sparselab@stanford.edu
%
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -