Essential Mathematics for Physics, Chemistry, and Engineering
This book serves as a refresher for upper-level undergraduate and graduate students in physics, chemistry, and engineering, solidifying their understanding of fundamental mathematical concepts crucial for scientific coursework. The content emphasizes practical applications of mathematics in these fields, starting with twelve progressively challenging examples that cultivate students' mathematical reasoning and problem-solving abilities in scientific contexts. Comprehensive illustrations and online resources enhance understanding, while the updated edition incorporates new problems, illustrations, and expanded chapters on matrix algebra and differential equations.
算法与数据结构
4
2024-05-30
Database_Project_SQL_Assignment
数据库课程设计,对数据库系统的建表和查询进行设计与实现。主要涉及以下几个步骤:
建表操作:创建适当的表结构,包括字段名、数据类型、约束条件等。
数据插入:通过SQL语句将数据插入到表中,保证数据完整性和一致性。
查询操作:使用SELECT语句查询数据,涉及简单查询和复杂查询(如联表查询、聚合函数等)。
该设计主要考察学生对数据库设计与SQL操作的掌握情况,并通过实际操作提升数据库管理能力。
MySQL
0
2024-10-26
Matlab Rectangular Segmentation Code-SGIR Test Code
Matlab椭圆分割代码,方法为“IASR:弱监督语义分割的迭代注释选择和细化”的测试代码。测试步骤如下:第一步:下载压缩模型,密码为:bg15或放入根目录解压。我们已发布与密码:y970的汇总手稿中表6的步骤P1到P4对应的所有模型。第二步:更改retored模型的根并运行test_vocSGIR_vgg.py进行SGIR-vgg16评估,多尺度融合的预测将保存在SAVE_DIR = './result/'中。在PASCAL VOC 2012验证数据集上可实现59.3的平均IoU。第三步:更改retored模型的根并运行test_vocSGIR_resnet进行SGIR-resnet101评估,多尺度融合的预测将保存在SAVE_DIR = './resultresnet/'中。在PASCAL VOC 2012验证数据集上可实现64.0的平均IoU。第四步:后处理请参考运行CRF。第五步:我们已提供用于评估的matlab代码,您可以评估结果并自行获取IoU,请参阅相关文档。
Matlab
0
2024-11-01
MATLAB RANSAC Code for SLAM
MATLAB RANSAC 代码
Matlab
0
2024-11-01
GPS Network Adjustment MATLAB Code
GPS网平差的matlab程序,亲自编写,代码有很详细的注释。
Matlab
0
2024-10-31
Signal_and_System_Experiment_Matlab_Code
信号与系统的试验MATLAB源程序
Matlab
0
2024-11-01
MATLAB_Add_Grid_To_Image_Code
以下是给照片添加网格的程序。用户可以根据需要自主编辑,调整网格密度。
% 读取图片
img = imread('your_image.jpg');
imshow(img);
hold on;
% 设置网格密度
grid_density = 20;
% 绘制网格
for i = 1:grid_density:size(img, 1)
plot([1 size(img, 2)], [i i], 'r');
end
for j = 1:grid_density:size(img, 2)
plot([j j], [1 size(img, 1)], 'r');
end
hold off;
Matlab
0
2024-11-02
AP Clustering Algorithm Source Code in MATLAB
AP聚类算法的源代码,基于MATLAB程序,有较详细解说。此代码实现了基于聚类的方法,通过图的结构和相似度计算,进行有效的数据分组。
Matlab
0
2024-11-03
MATLAB Image Color Balance Code Implementation
我自己写的图像色彩平衡代码,其中h(i)为r、g、b的平均值,lh为h(i)的平均值,h(i)/lh-1为平衡基,s(i)为加权系数。
Matlab
0
2024-11-03