自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 2023春季美赛(MCM/ICM)问题Y:了解二手帆船的价格

问题Y:了解二手帆船的价格​ 像许多奢侈品一样,帆船随着年龄的增长和市场条件的变化而价值不同。所附的“2023_MCM_Problem_Y_ Boats.xlsx” 文件包括大约3500艘帆船的数据,这些帆船的长度从36英尺到56英尺,广告显示将于2020年12月在欧洲、加勒比海和美国销售。一位划船爱好者向COMAP提供了这些数据。像大多数真实世界的数据集一样,它可能会有缺失数据或其他问题,需要在分析之前进行一些数据清理。​ Excel文件包括两个选项卡,一个用于单体帆船,一个用于双体船。

2023-04-02 17:32:09 675

原创 数学建模——LSTM时间序列预测的Matlab实现

data = kw; %导入数据,数据必须是一维向量figureplot(data)xlabel("15min Period")ylabel("Kw")title("15-minute load")numTimeStepsTrain = floor(0.9*numel(data));%划分训练集与测试集,这里选了0.9%确定训练次数dataTrain = data(1:numTimeStepsTrain+1);dataTest = data(numTimeStepsTrain...

2022-05-09 23:43:25 5469 1

原创 数据结构实验——约瑟夫环

一.Experimental purpose:Understand the basic logical structure of linear list, and complete the implementation of linked list and circular linked list Through experiments, we can further understand the logical structure and storage structure of linear l.

2021-12-09 22:39:35 209

原创 数据结构实验——多项式

#include "stdio.h"#include "stdlib.h"#include "math.h"typedef struct LNode { int pow; double cof; struct LNode* next;}LNode, * LinkList;LinkList CreatLinkList() { LinkList head = (LNode*)malloc(sizeof(LNode)); LNode* L, * rear;.

2021-12-09 22:36:42 296

原创 数据结构实验——模拟停车场

#include "stdio.h"#include "stdlib.h"#include "string.h"#define MAXSIZE 5#define NAMESIZE 20typedef struct car{ char name[NAMESIZE]; int hour; int min; int l_hour; int l_min;}car;typedef struct SeqStack{ int top; struc.

2021-12-03 10:54:59 290

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除