摘要:
一元线性回归例题 - 餐馆扩建 IIn this part of this exercise, you will implement linear regression with one variable to predict profits for a food truck. Suppose yo 阅读全文
摘要:
分类练习 1. 绘制训练集 在进行分类时,依旧需要观察训练集的样本特征,选择合适的模型 data = load("ex2data2.txt"); x = data(:,[1,2]); y = data(:,3); plotData(x,y); x = mapFeature(x(:,1),x(:,2) 阅读全文