合集-数学建模

摘要:P56 2. 阅读全文
posted @ 2024-03-18 21:54 theFaeSorceress 阅读(208) 评论(0) 推荐(0)
摘要:matlab习题 阅读全文
posted @ 2024-04-01 21:49 theFaeSorceress 阅读(46) 评论(0) 推荐(0)
摘要:matlab习题 阅读全文
posted @ 2024-04-03 16:18 theFaeSorceress 阅读(23) 评论(0) 推荐(0)
摘要:matlab习题 阅读全文
posted @ 2024-04-16 11:03 theFaeSorceress 阅读(46) 评论(0) 推荐(0)
摘要:1.实验目的 通过上机实验,理解利用计算机迭代求解线性方程组的整个过程,加深对所学计算方法的理论及算法特点的理解。 2.实验题目 2.1 利用算法2.1(Jacobi迭代法),编制MATLAB程序,求线性方程组 (1) \[\begin{pmatrix} 14&4&4&4\\ 4&14&4&4\\ 阅读全文
posted @ 2024-12-17 15:54 theFaeSorceress 阅读(39) 评论(0) 推荐(0)
摘要:function Y = lagrange(x,y,xx) n = length(x); s = 0; for i = 1 : n t = ones(1,length(xx)); for j = 1 : n if j ~= i t = t .* (xx-x(j)) / (x(i)-x(j)); en 阅读全文
posted @ 2024-12-24 15:36 theFaeSorceress 阅读(5) 评论(0) 推荐(0)