5. Octave Tutorial(现在一般都用python做)

Octave Tutorial

Octave 语法几乎和Matelab一样

  1. 一般的数学计算(elementary math operations)与python几乎一样:+、-、*、\、^
  2. 逻辑运算(logical operations):
    1. ==
    2. ~=
    3. \&\&:AND
    4. ||:OR;xor(0,1)等价于 0||1
    5. $$
  3. \%:comment
  4. PS1('>> '):可以简化命令行成'>> '
  5. disp():打印字符串或者对象等
  6. 向量、矩阵和数组:
    1. v=[1 2;3 4;5 6;]:向量
    2. v=1:0.1:2:从1到2步长位0.1的数组
    3. v=1:6:默认步长为1
    4. 2*ones(2,3):生成2*3的矩阵,都是2,默认ones(2,3)都是1;
    5. zeros(1,3)默认都是0
    6. rand(1,3)随机在0-1之间的数值
    7. randn(3,3)高斯分布的随机值,均值为0,标准差为1
    8. hist(w)打印直方图,w为一个向量,默认为5条,hist(w,n)可以打印出n条来
    9. eye(n)生成一个n维的单位矩阵
  7. help eye生成帮助信息

load data

  1. size(A):returns the size of the matrix A(returns a matrix).size(A,1):the size of the first dimension of A;size(A,2) the number of columms in the matrix A.
  2. length(v):the longer dimension of v.
  3. pwd:show the current path.cd:change a directory.ls:list all the directory of this path.
  4. load featuresX.dat or load('featuresX.dat')
  5. who variables in current scope.whosdetailed view.
  6. clear X get rid of a variable X.clear clear all the variables.
  7. save hello.mat v save the variable v to hello.mat.This commend will save data in a binary format.save hello.txt v -ascii save data in a text format.
  8. A(:,2) the colon (:) means every elemet along the second column.A([1 3],:) get everything from the first row and the third row.A(:,2) = [10;11;12] assigment the sencond column of the matrix. A = [A,[10,11,12]] append a column in the right.
  9. A(:)put all elements of A into a single vector.

Computing on data

  1. A*C: matrix mulitipation.
  2. A.*B: elements wise operations
  3. A./B:
  4. 1./B: the dot means emement wise operations in octave.
  5. A.^2: the square of each elemnets.
  6. log(v):
  7. abs(v): the absolute value of each element in v.
  8. exp(v):
  9. -v=-1*v:
  10. v+ones(length(v),1)=v+1:
  11. A': a transpose of A.
  12. val=max(A): the column wise maximum.
  13. [val,ind]=max(A): the maximum and the index.
  14. A < 2: elements wise compariation(0 or 1).false or true.
  15. find(A<2): return the index of which is true less then 2.
  16. magic(3): create an N-by-N magic square.All the rows columns and diagnoals sum up to the same thing.
  17. (r,c) = find(A>1): returnes the rows and columns
  18. sum(A): return the sum of A.prod(a): returns the product of A.floor(A): rounds down all the elemments of A. ceil(A): rounds up .
  19. max(rand(3),rand(3)): returns a ramdomly matrix ,each element is the maxium of two radomly generated matrices.
  20. max(A,[],1): the max of each column. This 1 means take the max along the first dimension of A.
  21. flipup(A): flip up the matrix A.

Plotting data

When using ';', there will be no data show in the cmd.

example:

t=[0;0.01;0.98];
y1=sin(2*pi*4*t);
plot(t,y1);
y2=cos(2*pi*4*t);
plot(t,y2);
plot(t,y1);
hold on;
plot(t,y2,'r');
xlabel('time');
ylabel('value);
legend('sin','cos')
title('my plot')
print -dpng 'my plot.png'

figure(1);plot(t,y1);
figure(2);plot(t,y2);% 可以出现两张图
subplot(1,2,1);% Divides plot a 1x2 grid, access first element.
axis([0.5 1 -1 1]) % set the x range and y range for the figure 
clf
A = magic(5)
imagesc(A)
imagesc(A),colorbar,colormap gray;

clf: clear a fiugere.
close all: close all fiugres.

a=1,b=2,c=3;% comman chaining of function calls.

For, while, if statements, and functions

v=zeros(10,1)
for i-1:10,
   v(i)=^i;
end;

indices=1:10;
for i=indices,
   disp(i);
end;

i=1;
while 9<=5,
   v(i)=100;
   i=i+1;
end;

i=1;
while true,
   v(i)= 999;
   i=i+1;
   if i == 6,
      break;
   end;
end;

v(1)=2;
if v(i)===1,
   disp('The value is 1');
elseif v(i)==2,
   disp('The value is 2');
else
   disp('The value is not one or two.');
end;

定义函数:

  • 文件名要与函数名一致,后缀为.m
  • 第一行function y = functionName(x)
  • 第三行函数体y = x^2;,这是一个平方函数。
  • 使用的时候,需要用cd打开目录,或者用addpath('path')把路径加入进去。
  • 可以定义返回多个变量的函数function [y1,y2] = functionName(x)

一个简单的代价函数计算函数:

function J = costFunctionJ(x,y,theta)
% x is the "design matrix" containing our training examples.
% y is the class labels.

m = size(x,1); % nmuber of training examples
predictions = x*theta; % predictions of hypothesis on all m examples
sqrErrors = (predictions-y).^2; % squared errors
J = 1/(2*m) * sum(sqrErrors);


Vectorization

  1. example:
    h_\theta(x)=\sum_{j=0}^n\Theta_jx_j=\Theta^Tx

\Theta=\begin{bmatrix} \Theta_0 \\ \Theta_1 \\ \Theta_2 \\ \end{bmatrix} \quad x=\begin{bmatrix} x_0 \\ x_1 \\ x_2 \end{bmatrix}

  1. example2:两个变量的预测
    \Theta_0 := \Theta_0 - \alpha\frac{1}{m}\sum_{i=1}^m(h_\Theta(x^{(i)})-y^{(i)})x_0^{(i)} \newline \Theta_1 := \Theta_1 - \alpha\frac{1}{m}\sum_{i=1}^m(h_\Theta(x^{(i)})-y^{(i)})x_1^{(i)} \newline \Theta_2 := \Theta_2 - \alpha\frac{1}{m}\sum_{i=1}^m(h_\Theta(x^{(i)})-y^{(i)})x_2^{(i)}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,240评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,328评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,182评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,121评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,135评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,093评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,013评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,854评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,295评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,513评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,678评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,398评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,989评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,636评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,801评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,657评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,558评论 2 352