필터 지우기
필터 지우기

How to implement fitnet.m in MATLAB R2007?

조회 수: 3 (최근 30일)
farzad
farzad 2018년 7월 8일
댓글: Walter Roberson 2018년 7월 24일
Hi All
Is there a way to introduce the fitnet function in MATLAB R2007, despite it's introduced in R2010 ?

채택된 답변

Greg Heath
Greg Heath 2018년 7월 8일
There may be licensing problems. Otherwise just use NEWFF. It's old but it is pretty good.
Greg
  댓글 수: 5
Greg Heath
Greg Heath 2018년 7월 24일
1. Apparently your first problem was using NEWFF instead of newff.
2. There is absolutely no reason why rng(0) should throw an error. It is just an alternate way to initialize the random number generator
>> rng(0), rand
ans =
0.8147
>> rng('default'), rand
ans =
0.8147
Hope this helps,
Greg
Walter Roberson
Walter Roberson 2018년 7월 24일
rng() was added in R2011a, replacing the use of rand or randn with the 'seed', 'state' or 'twister' inputs

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by