필터 지우기
필터 지우기

what are the inbuilt functions defined in this program?

조회 수: 1 (최근 30일)
ARTI
ARTI 2014년 2월 14일
댓글: Jan 2014년 2월 14일
close all;
clear all;
clc;
load voltage1
load current1
load radial_position1
v=(Ip./1000)';
w=Rp';
x=(Va./10)';
p=[v(1:2:length(v));w(1:2:length(w))];
t=x(1:2:length(x));
net1=newff(minmax(p),[10,10,5,1],{'tansig','tansig','tansig','purelin'});
net1.trainparam.show=5;
net1.trainparam.epochs=10000;
net1.trainparam.lr=0.6;
net1.trainparam.mu=0.5;
net1.trainparam.goal=.0000001;
net1.trainParam.mu_max = 1e+800;
net1=train(net1,p,t);
  댓글 수: 1
Jan
Jan 2014년 2월 14일
The question is not clear. What are you looking for?

댓글을 달려면 로그인하십시오.

답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2014년 2월 14일
You can check Matlab windows command:
help newff
If you don't find it , try in the web, maybe it belongs to a toolbox you haven't
newff matlab

카테고리

Help CenterFile Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by