随笔分类 -  软件工程日报

摘要:管理员运行“命令提示符”进入mysql的bin文件:cd C:\mysql-8.0.26-winx64\bin //我的MySQL/bin位置开启Mysql:net start mysql登录mysql:mysql -u root -p查看已创建的数据库:show databases;清除:clea 阅读全文
posted @ 2024-09-25 22:44 catsahsy 阅读(2) 评论(0) 推荐(0) 编辑
摘要:form action="(要跳转的网址的jsp文件)">网页跳转<input type="模式">进行界面操作:模式:(1)text:文本输入框(2)password:密码(3)radio:单选框(4)checkbox:多选框(5)submit:按钮除模式外<select name=""><opt 阅读全文
posted @ 2024-09-24 22:44 catsahsy 阅读(10) 评论(0) 推荐(0) 编辑
摘要:复习 与最开始的我比较 身体素质还是有待提高。 对于Android的增删改查,有了很大的提升。 对于页面的设计,也有了很大的提升,不再像以前一样,单纯的往空白的页面上加按钮,加搜索框等等,学会了套用模板。 阅读全文
posted @ 2024-06-13 20:48 catsahsy 阅读(4) 评论(0) 推荐(0) 编辑
摘要:继续复习 阅读全文
posted @ 2024-06-12 22:23 catsahsy 阅读(3) 评论(0) 推荐(0) 编辑
摘要:整理作业 阅读全文
posted @ 2024-06-11 22:58 catsahsy 阅读(2) 评论(0) 推荐(0) 编辑
摘要:继续复习数据库 看了范式跟候选码的大题怎么写 阅读全文
posted @ 2024-06-10 22:09 catsahsy 阅读(6) 评论(0) 推荐(0) 编辑
摘要:复习数据库 阅读全文
posted @ 2024-06-07 22:11 catsahsy 阅读(4) 评论(0) 推荐(0) 编辑
摘要:python函数图形2绘制; import matplotlib.pyplot as plt import numpy as np x = np.arange(-2, 2, 0.0001) y1 = np.sqrt(2 * np.sqrt(x ** 2) - x ** 2) y2 = (-2.14) 阅读全文
posted @ 2024-06-06 22:38 catsahsy 阅读(6) 评论(0) 推荐(0) 编辑
摘要:下午java写分级测试 没有头绪 很难 老想着看看之前的视频能补一点 是一点 数据库连接还是不熟练 老是忘记关键词 阅读全文
posted @ 2024-06-05 21:40 catsahsy 阅读(2) 评论(0) 推荐(0) 编辑
摘要:复习六级 阅读全文
posted @ 2024-06-04 23:04 catsahsy 阅读(2) 评论(0) 推荐(0) 编辑
摘要:python函数图形1绘制; import matplotlib.pyplot as plt import numpy as np x = np.arange(0, 10, 0.0001) y1 = x ** 2 y2 = np.cos(x * 2) y3 = y1 * y2 plt.plot(x, 阅读全文
posted @ 2024-06-03 22:29 catsahsy 阅读(4) 评论(0) 推荐(0) 编辑
摘要:python豆瓣图书评论数据分析与可视化; import re from collections import Counter import requests from lxml import etree import pandas as pd import jieba import matplot 阅读全文
posted @ 2024-05-31 21:31 catsahsy 阅读(4) 评论(0) 推荐(0) 编辑
摘要:MATLAB最优化工具箱的使用 % 定义二次项系数矩阵 H 和线性项系数向量 f H = 2 * eye(3); % H 是单位矩阵的 2 倍,因为目标函数是 x_1^2 + x_2^2 + x_3^2 f = [0; 0; 0]; % f 为零向量 % 定义等式约束矩阵 Aeq 和向量 beq A 阅读全文
posted @ 2024-05-30 22:01 catsahsy 阅读(8) 评论(0) 推荐(0) 编辑
摘要:共轭梯度法程序设计 function [x, k] = fr_conjugate_gradient() % 初始猜测 x = [1; 2; 2; 2]; % 计算初始梯度 g = grad_f(x); % 初始搜索方向 d = -g; % 终止准则的容差 tol = 1e-6; % 最大迭代次数 m 阅读全文
posted @ 2024-05-29 22:48 catsahsy 阅读(3) 评论(0) 推荐(0) 编辑
摘要:刷题 阅读全文
posted @ 2024-05-28 22:23 catsahsy 阅读(2) 评论(0) 推荐(0) 编辑
摘要:刷英语六级题 阅读全文
posted @ 2024-05-27 22:35 catsahsy 阅读(4) 评论(0) 推荐(0) 编辑
摘要:看黑马程序员 阅读全文
posted @ 2024-05-24 22:56 catsahsy 阅读(2) 评论(0) 推荐(0) 编辑
摘要:Newton法程序设计 function [x_opt, f_opt, iterations] = newtons_method(f, gradient, hessian, x0, epsilon) x = x0; iterations = 0; while norm(gradient(x)) > 阅读全文
posted @ 2024-05-23 22:18 catsahsy 阅读(7) 评论(0) 推荐(0) 编辑
摘要:工程数学 黄金分割法 function [xmin, fmin, iter] = golds(func, a, b, tol) % func: 要优化的函数句柄 % a, b: 初始搜索区间的下界和上界 % tol: 精度要求 % 黄金分割比例 phi = (sqrt(5) - 1) / 2; c1 阅读全文
posted @ 2024-05-22 20:22 catsahsy 阅读(8) 评论(0) 推荐(0) 编辑
摘要:python 中国大学排名数据分析与可视化; import requests from bs4 import BeautifulSoup as bs import pandas as pd from matplotlib import pyplot as plt def get_rank(url): 阅读全文
posted @ 2024-05-21 23:03 catsahsy 阅读(4) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示