资源简介

这份内容是美赛我们队参加美赛的做题全过程,包括论文终稿、一些零散部分、题目原题+翻译、代码、参考文献中英文。。。由于个人懒得整理成文,就一股脑的都扔给你,能看懂多少收获多少全凭造化,收一积分,算是认为内容值这个价吧,当然,如若觉得不值者,评论私聊包退。。。

资源截图

代码片段和文件信息

function [fitresult gof1gof2] = create(t Ytj Sc)
%% Player-formation-score multiple regression analysis curve
[xData yData] = prepareCurveData( t Yt );

% Set up fittype and options.
ft = fittype( ‘poly5‘ );

% Fit model to data.
[fitresult gof1] = fit( xData yData ft );

% Plot fit with data.
figure( ‘Name‘ ‘Player-formation-score multiple regression analysis curve‘ );
h = plot( fitresult xData yData );
legend( h ‘Yt vs. t‘ ‘Player-formation-score multiple regression analysis curve‘ ‘Location‘ ‘NorthEast‘ );
% Label axes
xlabel t
ylabel Yt
grid on


%% Team-tactic-scoring multiple regression analysis curve
[xData yData] = prepareCurveData( j Sc );

% Set up fittype and options.
ft = fittype( ‘poly4‘ );

% Fit model to data.
[fitresult gof2] = fit( xData yData ft );

% Plot fit with data.
figure( ‘Name‘ ‘Team-tactic-scoring multiple regression analysis curve‘ );
h = plot( fitresult xData yData );
legend( h ‘Sc vs. j‘ ‘Team-tactic-scoring multiple regression analysis curve‘ ‘Location‘ ‘NorthEast‘ );
% Label axes
xlabel j
ylabel Sc
grid on

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       45883  2020-02-14 20:13  1.gephi
     文件      732443  2020-02-18 05:58  1.vsdm
     文件     1492558  2020-02-18 09:06  2013309.pdf
     目录           0  2020-02-14 08:22  2020_Weekend1_Problems\
     文件       14766  2020-02-14 06:13  2020_Weekend1_Problems\2020_ICM_Problem_D(有道文档翻译结果).zip
     文件      151563  2020-02-11 05:18  2020_Weekend1_Problems\2020_ICM_Problem_D.pdf
     文件       12413  2020-02-14 06:22  2020_Weekend1_Problems\2020_ICM_Problem_E(有道文档翻译结果).zip
     文件      144430  2020-02-11 01:33  2020_Weekend1_Problems\2020_ICM_Problem_E.pdf
     文件      707257  2020-02-11 03:07  2020_Weekend1_Problems\2020_MCM_Problem_A.pdf
     文件     1410114  2020-02-08 07:07  2020_Weekend1_Problems\2020_Problem_D_DATA.zip
     目录           0  2020-02-14 06:41  2020_Weekend1_Problems\2020_Problem_D_DATA\
     文件     5145702  2019-12-10 00:29  2020_Weekend1_Problems\2020_Problem_D_DATA\fullevents.csv
     文件        1343  2019-12-10 00:29  2020_Weekend1_Problems\2020_Problem_D_DATA\matches.csv
     文件     1918348  2019-12-10 00:29  2020_Weekend1_Problems\2020_Problem_D_DATA\passingevents.csv
     文件        5168  2020-02-08 07:06  2020_Weekend1_Problems\2020_Problem_D_DATA\README.txt
     文件      697681  2020-02-18 03:42  2问求解.docx
     目录           0  2020-02-18 06:01  d_solution\
     目录           0  2020-02-20 06:08  d_solution\question1\
     文件       19823  2020-02-17 22:12  d_solution\question1\.Rhistory
     目录           0  2020-02-15 10:18  d_solution\question1\.Rproj.user\
     目录           0  2020-02-15 12:32  d_solution\question1\.Rproj.user\B175F28B\
     文件         199  2020-02-15 10:22  d_solution\question1\.Rproj.user\B175F28B\build_options
     目录           0  2020-02-15 10:54  d_solution\question1\.Rproj.user\B175F28B\ctx\
     目录           0  2020-02-15 12:32  d_solution\question1\.Rproj.user\B175F28B\explorer-cache\
     文件        8568  2020-02-15 12:32  d_solution\question1\.Rproj.user\B175F28B\explorer-cache\80223940eaee4f3dbc7f46a2770a7086
     文件     1188897  2020-02-15 12:33  d_solution\question1\.Rproj.user\B175F28B\explorer-cache\f93c6036e73a4e958c98de759f908252
     目录           0  2020-02-15 12:32  d_solution\question1\.Rproj.user\B175F28B\pcs\
     文件          77  2020-02-15 12:32  d_solution\question1\.Rproj.user\B175F28B\pcs\debug-breakpoints.pper
     文件         171  2020-02-15 12:32  d_solution\question1\.Rproj.user\B175F28B\pcs\files-pane.pper
     文件          23  2020-02-15 12:32  d_solution\question1\.Rproj.user\B175F28B\pcs\source-pane.pper
     文件         297  2020-02-15 12:32  d_solution\question1\.Rproj.user\B175F28B\pcs\windowlayoutstate.pper
............此处省略293个文件信息

评论

共有 条评论