[Matlab 2010] 8. 그래픽 출력 - 선 그리기 - 1 -
1. 기본 y = x 그래프
Condition : x > 0, x = 0, y > 0, y = 0
2. 다양한 형식의 line
line
line(X,Y)
line(X,Y,Z)
line(X,Y,Z,'PropertyName',propertyvalue,...)
line('XData',x,'YData',y,'ZData',z,...)
h = line(...)
프로퍼티 설정
line('PropertyName1',x,'PropertyName2',y,'PropertyName N`,N)
프로퍼티 설정 + 색상 + 프로퍼티 값
line('XData',x,'YData',y,'ZData',z,'Color','r','LineWidth',4)
3. Connecting the dots
X = [x(1) x(2) x(3)...x(n)]
Y = [y(1) y(2) y(3)...y(n)]
Z = [z(1) z(2) z(3)...z(n)]
벡터 원소값에 해당하는 것 찾기
p1(x(i),y(i),z(i))
axis([0 1 0 1])
line([.3 .7],[.4 .9],[1 1],'Marker','.','LineStyle','-')
해설
x1 = 3, y1 = 4, z1 = 1
x2 = 7, y2 = 9, z2 = 1
'소프트웨어(SW) > Mathwork - Matlab' 카테고리의 다른 글
[Matlab 2010] 7. 행렬의 연산 -4- (13) | 2010.11.12 |
---|---|
[Matlab 2010] 6. 콜론 연산자 (13) | 2010.11.12 |
[Matlab 2010] 5. 행렬의 연산 -3- (13) | 2010.11.12 |
[Matlab 2010] 4. 행렬의 연산 -2- (13) | 2010.06.12 |
[Matlab 2010] 3. 행렬의 연산 -1- (13) | 2010.06.11 |