hhyyq 发表于 2006-3-23 15:33

求助,初学者。编程中几个要解决的问题

clear;<BR>x0=input('input the original inner pressure:');%定义包装内某种气体的分压的初始值<BR>x=x0;<BR>t=input('input t:');<BR>h=input('input h:');<BR>p=input('input the pressure of out:');<BR>Pm=input('input the gas permeative coefficient:');<BR>E=input('input the percent of the hole:');<BR>A=input('input the total area of the film:');<BR>D=input('input the diameter of the hole:');<BR>L=input('input the length of the hole:');<BR>T=input('input the temperature:');<BR>V=input('input the free volume of package:');<BR>M=input('input the molecular weight of the gas:');<BR>R=input('input the gas constant:');<BR>b=Pm*(1-E)*A+D*E*A*sqrt(8*R*T/(pi*M));<BR>c=b*V/(R*T*L);<BR>for i=1:h:n<BR>    x=x+(p-x)*c*h;<BR>   plot(i,x,'bp');<BR>    hold on<BR>end<BR>disp(x);<BR>刚学,有好多问题都不知道怎么解决。主要有两个问题:<BR>1,怎么用简单的方法来输入数据?想直接输入一列或者一行的相关数据,是否可以实现<BR>2,由于我算出来的是点,所以得出的图也是离散的点,是不是有什么命令可以让这些离散点拟合成一条曲线。还有把初始点在包括在其中<BR>希望大家能多给我该程序的意见和解决的方案。多谢了

hhyyq 发表于 2006-3-23 20:29

<P>哎,是不是编得实在太不像话了。都没有人愿意帮忙。<BR>555555555555555555555</P>

hhyyq 发表于 2006-3-23 20:31

<P>happy大侠还在吗?帮我看看。诚求。</P>

happy 发表于 2006-3-24 07:51

回复:(hhyyq)求助,初学者。编程中几个要解决的问题...

<DIV class=quote>1,怎么用简单的方法来输入数据?想直接输入一列或者一行的相关数据,是否可以实现<BR>2,由于我算出来的是点,所以得出的图也是离散的点,是不是有什么命令可以让这些离散点拟合成一条曲线。还有把初始点在包括在其中<BR>希望大家能多给我该程序的意见和解决的方案。多谢了</DIV>
<P><BR>1.比如你的第一个参数,再输入的时候<BR>input the original inner pressure:<BR>那么这时你给x0赋的值就是向量<BR><BR>2.polyfit就是拟合函数,具体怎么用看帮助</P>

hhyyq 发表于 2006-3-24 08:59

<P>谢谢大侠了!辛苦了</P>
页: [1]
查看完整版本: 求助,初学者。编程中几个要解决的问题