首页 > 电脑 > matlab大一高数实验求救!!!

matlab大一高数实验求救!!!

电脑 2022-11-15

大一matlab数学实验报告

  1. 先画出散点图

    >>x=[46495152545657585960616263646667687172];
    >>y=[40505563727077739093968899110113120127127132];
    >>plot(x,y,'o')

  2. 观察可知,近似为线性关系,所以用一次多项式进行拟合

    >>p=polyfit(x,y,1)
    p=
    3.6995-131.9833

    即拟合结果为:y = 3.6555x-131.9833

  3. 绘制拟合曲线

    >>holdon
    >>plot(x,polyval(p,x),'g')
    >>gridon

哪位高手帮忙做一下数学实验题目,用MATLAB求解,急!!!!

第一个程序写好了。给你 t=0;gamma=0.9;v0=20;g=9.8; for n=1:10 hold on; to=roots([-g/2,v0,0]); tv=to(2)-to(1); tx=t:0.01:t+tv; tm=(2*t+tv)/2; h=v0*(tx-t)-g*(tx-t).^2/2; hm=v0*(tm-t)-g*(tm-t).^2/2; plot(tx,h,'k'); plot(tm,hm,'r.','markersize',15) plot([tm,tm],[0,hm],'m:',[0,tm],[hm,hm],'m:') pause(0.2); grid on;

MATLAB数学实验。高分悬赏答案!!!!!!!!!!!!!!!!!!!!!!!

1.先用下面这段代码找到方程的一个特解 clc clear all format long A=[2 7 3 1;3 5 2 2;9 4 1 7]; B=[6;4;2]; format rat; X=A\B 解为 X = -2/11 10/11 0 0 因为矩阵中有两个非零元素,所以矩阵A的秩为2,基本解有n-rank(A)个 2.求方程组的基本解 Z=null(A,'r') 解为 Z = 1/11 -9/11 -5/11 1/11 1 0 0 1 所以该方程组的通解为 X通解=X+Z1*q1+Z2*q2 q1,q2为任意向量 完毕

求助……matlab数学实验(给药方案)

用非线性回归曲线拟合方法,nlinfit函数。 function blood clc;clear; d=300;c1=10;c2=25; t=[0.25 0.5 1 1.5 2 3 4 6 8]' c=[19.21 18.15 15.36 14.10 12.89 9.32 7.45 5.24 3.01]' beta = NLINFIT(t,c,@fun,[1 1]); d_V=beta(1);k=beta(2),V=d/d_V tt=0:0.1:8; C=d_V*exp(-k*tt); plot(t,c,'o',tt,C) D0=V*c2,D=V*(c2-c1),m=(1/k)*log(c2/

数学实验:通过Matlab软件操作,对函数性质有进一步了解 f(x)=sin^2(1.006)x

f=@(x)(sin(1.006*x).^2);
formatlong;
m=[100,200,1000];
fori=1:3
%区间分n段等长子区间
n=m(i);
xn=(0:n-1)/n*pi;%xn(i)为第i段区间左端点值
d=pi/n;%子区间宽度
xnm=xn+d/2;%区间中点
ynm=f(xnm);%区间中点的函数值
S(i)=sum(ynm);%求和
end
%求平均值
Smean=sum(S)/sum(m)%函数均值
%解方程
x=fsolve(@(x)sin(1.006*x)^2-Smean,0.1)

标签:matlab 数学实验 高等教育 信息技术

大明白知识网 Copyright © 2020-2022 www.wangpan131.com. Some Rights Reserved. 京ICP备11019930号-18