歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

matlab下nookbook的使用

nootbook是用來在word下進行matlab操作,並能夠在word中保存matlab執行後的結果,使用起來比較方便。

安裝語句:nootbook -setup

啟動語句:nootbook

我的使用過程:

執行這句話
a=[1,2,3,4,5]; 
b=[1,2,3] 

b =
    1    2    3 
plot(a,b) 

??? Error using ==> plot
Vectors must be the same lengths. 
b=[1,2,3,4,5] 

b =
    1    2    3    4    5 
plot(a,b) 


單元組
a=[1,2,3,4,5];
b=[1,2,3,4,5]; 
for k=1:5 
 y=k;
end 

Copyright © Linux教程網 All Rights Reserved