MATLAB TRICKS
如何在MATLAB中畫一個(gè)矩形
函數(shù)直擊
plot
line
這里用到的其實(shí)plot更基礎(chǔ)的畫法,關(guān)于點(diǎn)和線的畫法
plot(xdata,ydata),plot畫圖時(shí)一般要傳入想要的數(shù)據(jù)點(diǎn),或者說是點(diǎn)集,即(xdata,ydata)
這里不難想到這兩個(gè)向量的維度要匹配
plot(1:9)
這里只使用了一個(gè)參量,是因?yàn)槟J(rèn)xdata是從1開始,步長(zhǎng)為1,相當(dāng)于plot(1:1:length(1:9),1:9)

有了以上的經(jīng)驗(yàn),我們不難畫出一個(gè)矩形

我們來關(guān)注一下它的形成過程

這樣 ,很容易就能確認(rèn)xdatas和ydatas
代碼如下:
>> x1 = [-10 10 10 -10 -10];
>> y1 = [5 5 -5 -5 5];
>> x2 = [-5 5 5 -5 -5];
>> y2 = [2 2 -2 -2 2];
>> plot(x1,y1,x2,y2)
>> axis([-20 20 -20 20])
之前賣了一個(gè)關(guān)子,line函數(shù)也有同樣的功能,只不過它只允許傳入一組數(shù)據(jù)點(diǎn)
廢話不多說,一起來看一看
x1 = [-10 10 10 -10 -10];
y1 = [5 5 -5 -5 5];
x2 = [-5 5 5 -5 -5];
y2 = [2 2 -2 -2 2];
line(x1,y1)
hold on
line(x2,y2)
axis([-20 20 -20 20])

接下來我們來畫一個(gè)倒立擺
在畫之前,我們來畫一個(gè)圓,我們規(guī)定它的圓心為(5,5),半徑為3

接下來
%% plot the arm of the pendulum
x1 = [0 4];
y1 = [0 4];
plot(x1,y1)
axis([-6 6 -4 8])
hold on
%% plot the rectangles
x2 = [-3 3 3 -3 -3];
y2 = [0 0 -3 -3 0];
plot(x2,y2)
%% plot the three circles
t = 0:0.01:2*pi;
x3 = 4 + 0.5*sin(t);
y3 = 4 + 0.5*cos(t);
x4 = 2 + 0.5*sin(t);
y4 = -3.5 + 0.5*cos(t);
x5 = -2 + 0.5*sin(t);
y5 = -3.5 + 0.5*cos(t);
plot(x3,y3,x4,y4,x5,y5)
axis equal
