刚接触matlab,各种操作都还不是很熟悉,用到的函数也还没有几个。不过进步是在不断练习中取得的。现在把过去几天学到的东西总结一下。
   主要是自己编写的几个函数。
   1.mygcd(b,c)
   函数的功能是返回b和c的最大公约数,也就是greatest common divisor。用到的算法是Euclidean Algorithm。代码如下:
  
function a = mygcd(b,c)
%hittoku
%hittoku
k = 1;
while(k)
n = fix(b/c);
m = mod(b,c);
if m ~= 0
b = c;
c = m;
else
k = 0;
a = c;
end
end
 今天有事,就写这么多吧。matlab还是挺强大的一个工具。