필터 지우기
필터 지우기

What is the fourth array element denotes (specified as NaN in code below) in the input to fcm function of matlab 2019?

조회 수: 3 (최근 30일)
c = 3;
m = 2.0;
iter = 20;
minImp = 0.00001;
[centers U] = fcm(data,c,[m,iter,minImp,NaN])
  댓글 수: 1
NALLARASU KRISH
NALLARASU KRISH 2024년 2월 24일
The fourth element is nothing but Obj Fun display option. Its default value is 1 (to display) the Obj Fun values for each iteration. If the fourth element is given 0 (false), then the Obj Fun values will not be displayed.

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

채택된 답변

Dyuman Joshi
Dyuman Joshi 2024년 2월 24일
From the documentation of fcm(), for the syntax [centers,U] = fcm(data,Nc,options) - "If any element of options is NaN, the default value for that option is used."
Here are documentation of fcm() highlighting the options input argument (you can check the default values here) -

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by