自定義函式
%在fact.m檔案中,自定義階乘函式
function output = fact(n)
output = 1;
for i = 1:n,
output = output*i;
end
通用函式:
數值的函式:
向量的函式:
矩陣的函式:
例:v=[3 7 11 5];數值的操作:
y = x+3-5...
+4-2;
矩陣的操作:m =
11 12 13
21 22 23
31 32 32
>> m(4)
ans =
12
form = zeros(6,5);
for i = 1:6
for j = 1:5
m(i,j) = 3*j+i;
endenddisp(m)
為了提高執行效率,在知道矩陣大小的情況下,最好先用zeros或ones初始化矩陣。while
x = zeros(6,1);
i = 1;
while i <= 6
x(i) = i;
enddisp(x)
ifif i == j
a(i,j) = 2;
elseif abs(i-j) == 1
a(i,j) = -1;
else
a(i,j) = 0;
end
github常見操作和常見錯誤!
如果輸入 git remote add origin git github.com djqiang github帳號名 gitdemo 專案名 git 提示出錯資訊 fatal remote origin already exists.解決辦法如下 1 先輸入 git remote rm origi...
github常見操作和常見錯誤!
如果輸入 git remote add origin git github.com djqiang github帳號名 gitdemo 專案名 git 提示出錯資訊 fatal remote origin already exists.解決辦法如下 1 先輸入 git remote rm origi...
github常見操作和常見錯誤
如果輸入 git remote add origin git github.com djqiang github帳號名 gitdemo 專案名 git 提示出錯資訊 fatal remote origin already exists.解決辦法如下 1 先輸入 git remote rm origi...