Implementing and ploting a perceptron in MATLAB

前端 未结 3 505
隐瞒了意图╮
隐瞒了意图╮ 2020-12-13 11:29

I´m reviewing a code from Toronto perceptron MATLAB code

The code is

function [w] = perceptron(X,Y,w_init)

w = w_init;
for iteration = 1 : 100  %&l         


        
3条回答
提交回复
热议问题