function Happy_New_Year_2024()
fig = figure;
set(fig, 'Color', [0 0 0]);
hold on;
axis off;
axis equal;
axis([0 75 0 75]);
set(gca, 'color', [0 0 0]); % Set background to black
% Number of fireworks
n_fireworks = 40;
% Create fireworks
for i = 1:n_fireworks
% Randomly choose the center of the firework
center_x = rand() * 75;
center_y = rand() * 75 + 50;
% Randomly choose the number of particles
n_particles = randi([100, 100]);
% Generate particles
for j = 1:n_particles
% Random angle for the particle
angle = rand() * 2 * pi;
% Random length for the particle
length = rand() * 5 + 5;
% Calculate end point of the particle
end_x = center_x + length * cos(angle);
end_y = center_y + length * sin(angle);
% Random color for the particle
color = rand(1, 3);
% Plot the particle
plot([center_x, end_x], [center_y, end_y], 'Color', color, 'LineWidth', rand()*4);
end
% Pause a bit before the next firework
pause(0.1);
end
% Add multicolor text at the bottom
message = 'Happy New Year 2024: PIRC';
words = strsplit(message, ' ');
x_start = 10;
y_position = 30;
for w = 1:numel(words)
text_color = rand(1, 3);
text(x_start, y_position, words{w}, 'Color', text_color, 'FontSize', 18, 'FontWeight', 'bold');
x_start = x_start + numel(words{w}) *3.5;
end
hold off;
end
Matlab科研辅导帮
- 粉丝: 3w+
- 资源: 7814
最新资源
- 证券投资交易分析系统(含源码+项目说明+文档资料+全部资料).zip
- 知识图谱医疗问答系统+前端展示源码(2024毕业设计).zip
- 在线教育培训管理系统(含源码+项目说明+功能模块介绍).zip
- 在线考试系统-基于SpringCloud+Vue3近期开发(遗传算法自动组卷、文本批量导入,含源码+项目说明+设计报告).zip
- 在线流量分类模型-基于CNN+LSTM时空神经网络(含源码+说明文档+设计报告).zip
- 云开发电影院订票小程序(微信小程序源码+项目说明+设计报告).zip
- 云计算实验-利用GitHub进行协作并编写YML测试用例实现持续集成(含文档).zip
- 年度死因数字数据集.zip
- 猜数字游戏,再来一次,点名器,定时器,体彩方案
- 基于Matlab图像识别技术的隐形眼镜镜片边缘缺陷检测源代码
- 在线NFT铸造平台-整合区块链、IPFS与React技术(含源码及设计文档).zip
- 运动想象脑电信号分类-基于Transformer(CNN+局部时间空间特征提取,含源码+项目说明).zip
- 游戏AI强化训练-深度强化学习实战源码(比赛项目).zip
- 游戏空战推演系统源码基于强化学习开发源码(期末大作业).zip
- 期末课设-员工信息管理系统-基于Qt+SQLite数据库(含源码+项目说明+设计报告).zip
- 玉米病害与害虫识别系统源码+农业智能应用报告(课程设计).zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈