摘要:Matlab 2.儲存
x=1:10
Y=log(x)
plot(x,y)
y = log(x)-0.2*x
plot(x,y,'*') %設定*為圖示
whos
Save mydata %儲存whos內的變數
clear x
whos
load mydata
whos
摘要:Matlab 2.儲存
x=1:10