MATLAB
ginger188
这个作者很懒,什么都没留下…
展开
-
matlab在建模中的应用
1.polyfit(X,Y,N)多项式拟合,返回降幂排列的多项式polyval(P,xi)计算多项式的值2.原创 2015-01-26 17:10:34 · 601 阅读 · 0 评论 -
使用MATLAB进行一次和二次规划问题求解
对于一次问题,可以使用linprog函数,例如Find x that minimizes f(x) = –5x1 –4x2 –6x3,subject tox1 – x2 + x3 ≤203x1 +2x2 + 4x3 ≤423x1 +2x2 ≤ 300≤ x1, 0 ≤ x2,0 ≤ x3.First, enter the coeffi原创 2015-01-21 22:59:59 · 8416 阅读 · 0 评论 -
MATLAB绘图
1.fplot可用来精确绘图例如sn = @(x) sin(1./x);fplot(sn,[0.01,0.1])或者Create a file named myfun.m that containsthe following code.function Y = myfun(x)Y(:,1) = 200*sin(x(:))./x(:);Y(:,2)原创 2015-01-22 22:52:11 · 504 阅读 · 0 评论