본문내용
0:0.01:10];
y=5./(1+exp(5.5-1.5*x))-(x.^2./20);
plot(x,y)
3.
>> fplot(\'40./(1+(x-4).^2)+5*sin(20*x./pi)\',[-10,10])
4.
>> x=[-10:0.01:10];
y=5./(1+exp(5.5-1.5*x))-(x.^2./20);
plot(x,y)
>> fplot(\'40./(1+(x-4).^2)+5*sin(20*x./pi)\',[-10,10])
>> x1=[-4:0.1:1.7];
x2=[2.3:0.1:8];
y1=(x1.^2-4*x1-5)./(x1-2);
y2=(x2.^2-4*x2-5)./(x2-2);
plot(x1,y1)
hold on
plot(x2,y2)
hold off
5.
>> x1=[-10:0.02:-2.1];
x2=[-1.9:0.02:4.9];
x3=[5.1:0.02:10];
y1=(4*x1-30)./(x1.^2-3*x1-10);
y2=(4*x2-30)./(x2.^2-3*x2-10);
y3=(4*x3-30)./(x3.^2-3*x3-10);
plot(x1,y1,x2,y2,x3,y3)
axis([-10 10 -30 30])
6.
>> x=[-2:0.01:2*pi];
y=3*x.*cos(x).^2-2*x;
yd=3.*cos(x).^2-2.*cos(x).*sin(x)-2;
plot(x,y)
hold on
plot(x,yd,\'--r\')
xlabel(\'x\')
ylabel(\'y or yd\')
legend(\'y\',\'yd\')
7.
>>vs=12; rs=2.5;
RL=[1:0.01:10]
P=(vs.^2.*RL)./(RL+rs).^2
plot(RL,P)
xlabel(\'RL\')
ylabel(\'P(W)\')
9.
>>fplot(\'693.8-68.8*cosh(x/99.7)\',[-200 200])
10.
a)>>t=[0:1:30];
xt=-0.28*t.^2+6.5*t+61; yt=0.18*t.^2-8*t+65;
subplot(3,1,1)
plot(xt,yt)
xlabel(\'x(m)\')
ylabel(\'y(m)\')
b)>>r=sqrt(xt.^2+yt.^2);
subplot(3,1,2)
plot(t,r)
xlabel(\'t (s)\')
ylabel(\'r (m)\')
c)>>th=atand(yt./xt);
subplot(3,1,3)
plot(t,th)
xlabel(\'t (s)\')
ylabel(\'Theta (deg)\')
12.
t=0:0.1:8; x=-0.1*t.^4+0.8*t.^3+10*t-70; v=-0.4*t.^3+2.4*t.^2+10; a=-1.2*t.^2+4.8*t; subplot(3,1,1)
plot(t,x)
xlabel(\'time(s)\')
ylabel(\'position(m)\')
subplot(3,1,2)
plot(t,v)
xlabel(\'time(s)\')
ylabel(\'velocity(m/s)\')
subplot(3,1,3)
plot(t,a)
xlabel(\'time(s)\')
ylabel(\'acceleration(m/s^2)\')
y=5./(1+exp(5.5-1.5*x))-(x.^2./20);
plot(x,y)
3.
>> fplot(\'40./(1+(x-4).^2)+5*sin(20*x./pi)\',[-10,10])
4.
>> x=[-10:0.01:10];
y=5./(1+exp(5.5-1.5*x))-(x.^2./20);
plot(x,y)
>> fplot(\'40./(1+(x-4).^2)+5*sin(20*x./pi)\',[-10,10])
>> x1=[-4:0.1:1.7];
x2=[2.3:0.1:8];
y1=(x1.^2-4*x1-5)./(x1-2);
y2=(x2.^2-4*x2-5)./(x2-2);
plot(x1,y1)
hold on
plot(x2,y2)
hold off
5.
>> x1=[-10:0.02:-2.1];
x2=[-1.9:0.02:4.9];
x3=[5.1:0.02:10];
y1=(4*x1-30)./(x1.^2-3*x1-10);
y2=(4*x2-30)./(x2.^2-3*x2-10);
y3=(4*x3-30)./(x3.^2-3*x3-10);
plot(x1,y1,x2,y2,x3,y3)
axis([-10 10 -30 30])
6.
>> x=[-2:0.01:2*pi];
y=3*x.*cos(x).^2-2*x;
yd=3.*cos(x).^2-2.*cos(x).*sin(x)-2;
plot(x,y)
hold on
plot(x,yd,\'--r\')
xlabel(\'x\')
ylabel(\'y or yd\')
legend(\'y\',\'yd\')
7.
>>vs=12; rs=2.5;
RL=[1:0.01:10]
P=(vs.^2.*RL)./(RL+rs).^2
plot(RL,P)
xlabel(\'RL\')
ylabel(\'P(W)\')
9.
>>fplot(\'693.8-68.8*cosh(x/99.7)\',[-200 200])
10.
a)>>t=[0:1:30];
xt=-0.28*t.^2+6.5*t+61; yt=0.18*t.^2-8*t+65;
subplot(3,1,1)
plot(xt,yt)
xlabel(\'x(m)\')
ylabel(\'y(m)\')
b)>>r=sqrt(xt.^2+yt.^2);
subplot(3,1,2)
plot(t,r)
xlabel(\'t (s)\')
ylabel(\'r (m)\')
c)>>th=atand(yt./xt);
subplot(3,1,3)
plot(t,th)
xlabel(\'t (s)\')
ylabel(\'Theta (deg)\')
12.
t=0:0.1:8; x=-0.1*t.^4+0.8*t.^3+10*t-70; v=-0.4*t.^3+2.4*t.^2+10; a=-1.2*t.^2+4.8*t; subplot(3,1,1)
plot(t,x)
xlabel(\'time(s)\')
ylabel(\'position(m)\')
subplot(3,1,2)
plot(t,v)
xlabel(\'time(s)\')
ylabel(\'velocity(m/s)\')
subplot(3,1,3)
plot(t,a)
xlabel(\'time(s)\')
ylabel(\'acceleration(m/s^2)\')
추천자료
헌법소원에 대한 고찰
리딩리포트-복음과 율법의 관계
제임스 조이스 젊은 예술가의 초상
멀티미디어에 대하여..(자세히)
숲으로 가는 길
교육사회학 요약정리
모세오경의문화적배경(G. 허버트 리빙스톤)
자연재해(특히 지진)에 대한 화학시설의 설치기준에 대한 미국 등 북미국가의 법, 제도 현황
애덤 스미스 (Adam Smith) - 국부론
[미혼모 대책방안] 미혼모 가족의 실태와 현황, 미혼모 발생 원인, 미혼모 문제점 및 미혼모...
(신학교, 신대원) [요약, 감상문] 한권으로 마스터하는 구약성경(Lesen und verstehen) - 헤...
[사회복지 조사론] 청소년 수련관 운영방식 결정 요인에 관한 연구
Q:skill for success -READING AND WRITING (1 ~ 5장 정리)
한국방송통신_만점받음_공통_지역사회복지론역사회의 권력에 대한 분석과 탈원전 문제의 공론...
소개글