Matlab
文章平均质量分 66
普通网友
这个作者很懒,什么都没留下…
展开
-
Machine Learning 线性回归( Linear Regression) Andrew Ng 课程练习 Matlab Script 详细解析
close all; clear; clc; clf; %该脚本尾部有原数据 % /media/heliheng/Resource/deep_learning/matMLLRex X = load('ex2x.dat'); Y = load('ex2y.dat'); plot(X, Y, 'o'); ylabel('Height in meters') xlabel('Age原创 2016-04-09 10:57:34 · 994 阅读 · 1 评论 -
Machine Learning MultiLinear Regression Andrew Ng 课程练习 Matlab Script 详细解析
close all; clear; clc; %%说明; %ubuntu 的中文不太好输入,注释英文比较多 矩阵规模这样表示 e.g. A:[mxn ] %% load the original data X:[mX2]Dimensions Y:[mX1]Dimensions %X:[mX2]Dimensions X= load('ex3x.dat'); %Y:[mX1]Dime原创 2016-04-09 11:52:58 · 867 阅读 · 0 评论 -
Machine Learning Logistic Regression and Newton's Method Andrew Ng 课程练习 Matlab Script 详细解析
%% %For this exercise, suppose that a high school has a dataset representing 40 students ... %who were admitted to college and 40 students who were not admitted. %Each $(x^{(i)}, y^{(i)})$ traini原创 2016-04-10 22:44:11 · 819 阅读 · 0 评论 -
应用中Matlab语句学习笔记总结1
1、[~, index] = max() 是什么意思? ~表示最大值,index表示最大值的位置 如[m,n]=max([1,-1,5,2]) 则m=5,n=3。 2、tic、toc分别表示什么意思? tic表示计时开始、toc表示计时结束。 tic; scores = net.forward(input_data); toc; 如上例所原创 2016-03-27 17:11:33 · 505 阅读 · 0 评论 -
应用中Matlab语句学习笔记总结2
1、 strcmp c = strcmp(str1,str2) 比较字符串 str1 与 str2 ,若完全相等则返回 1 ,不相等返回 0 如 >> str1 = 'hi' str1 = hi >> str2 = 'hello' str2 = hello >> str3 = 'hi' str3 = hi >> strcmp(str1,原创 2016-04-11 10:56:08 · 383 阅读 · 0 评论