Yuuta

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

%data V = 220; Rumah1 = 1300; Rumah2 = 2200; Rumah3 = 900; %RUMUS MENCARI ARUS I1 = Rumah1/V I2 = Rumah2/V I3 = Rumah3/V %disain

matrik T= [I1 I2 I3]; P= [1300 2200 900]; %membuat jaringan net = newff (minmax(P),[1 1], {'purelin','purelin'},'trainrp'); %set parameter net.trainParam.epochs = 1000; net.trainParam.goal = 0; %net.trainParam.lr = 0.05; net.trainParam.show = 1; %net.trainParam.mc = 0.05; %pelatihan [net, tr] =train(net,P,T); %simulasi ANN sim_net = sim(net,P)

You might also like