function [U,center,result,w,obj_fcn]= fenlei(data) [data_n,in_n] = size(data) m= 2 % Exponent for U max_iter = 100 % Max. iteration min_impro =1e-5 % Min. improvement c=3 [center, U, obj_fcn] = fcm(data, c) for i=1:max_iter if F(U)>0.98 break else w_new=eye(in_n,in_n) center1=sum(center)/c a=center1(1)./center1 deta=center-center1(ones(c,1),:) w=sqrt(sum(deta.^2)).*a for j=1:in_n w_new(j,j)=w(j) end data1=data*w_new [center, U, obj_fcn] = fcm(data1, c) center=center./w(ones(c,1),:) obj_fcn=obj_fcn/sum(w.^2) end end display(i) result=zeros(1,data_n) U_=max(U) for i=1:data_n for j=1:c if U(j,i)==U_(i) result(i)=j continue end end end
標簽: data function Exponent obj_fcn
上傳時間: 2013-12-18
上傳用戶:ynzfm
A passive optical network (PON) is a point-to-multipoint, fiber to the premises network architecture in which unpowered optical splitters are used to enable a single optical fiber to serve multiple premises, typically 32-128. A PON consists of an Optical Line Termination (OLT) at the service provider s central office and a number of Optical Network Units (ONUs) near end users. A PON configuration reduces the amount of fiber and central office equipment required compared with point to point architectures
標簽: network point-to-multipoint architecture premises
上傳時間: 2016-12-10
上傳用戶:王慶才
簡易文本編輯器。在出現的界面中輸入任意文本內容,利用DEL鍵、BACKSPACE鍵、HOME鍵、END鍵、上下左右光標鍵對文本進行全屏幕編輯,按f1鍵激活菜單file,下移光標,選擇save,輸入文件名。也可以選擇FILE菜單的其他菜單項,他們的功能均可實現。按f10激活幫助,按ESC鍵退出幫助。
上傳時間: 2014-01-16
上傳用戶:gonuiln
selects the mux channel and configures the MAX197 for second write pulse, written with ACQMOD = 0, termi- either unipolar or bipolar input range. A write pulse (WR nates acquisition and starts conversion on WR°Os risin + CS) can either start an acquisition interval or initiate a edge (Figure 6). However, if the second control byte combined acquisition plus conversion. The sampling contains ACQMOD = 1, an indefinite acquisition interval interval occurs at the end of the acquisition interval. is restarted. The ACQMOD bit in the input control byte offer
標簽: configures the selects channel
上傳時間: 2013-12-09
上傳用戶:
selects the mux channel and configures the MAX197 for second write pulse, written with ACQMOD = 0, termi- either unipolar or bipolar input range. A write pulse (WR nates acquisition and starts conversion on WR°Os risin + CS) can either start an acquisition interval or initiate a edge (Figure 6). However, if the second control byte combined acquisition plus conversion. The sampling contains ACQMOD = 1, an indefinite acquisition interval interval occurs at the end of the acquisition interval. is restarted. The ACQMOD bit in the input control byte offer
標簽: configures the selects channel
上傳時間: 2016-12-24
上傳用戶:朗朗乾坤
selects the mux channel and configures the MAX197 for second write pulse, written with ACQMOD = 0, termi- either unipolar or bipolar input range. A write pulse (WR nates acquisition and starts conversion on WR°Os risin is restarted. The ACQMOD bit in the input control byte offer+ CS) can either start an acquisition interval or initiate a edge (Figure 6). However, if the second control byte combined acquisition plus conversion. The sampling contains ACQMOD = 1, an indefinite acquisition interval interval occurs at the end of the acquisition interval.
標簽: configures the selects channel
上傳時間: 2016-12-24
上傳用戶:yzhl1988
各功能描述: 1. 當A為低電平時,AC-3燈點亮,即是AC-3的輸入方式 當A為高電平時,STEREO燈點亮,即是STEREO的輸入方式 2. 當STANDBY燈點亮時,為待機狀態;此LED閃動時為MUTE狀態,PT2258為靜音狀態,同時STANDBY為低電平 3. 各聲道(FRONT,SUB,REAR,CENT)其微調音量調節+/-5dB;音量調節從01~80dB 4. 面板無任何按鍵,均為遙控器控制 5. 剛開機時為待機狀態,開機時音量為50dB狀態,各微調為0dB, 6. 按遙控器的REST鍵后,系統為開機時狀態, 7. PT2258音量衰減共80DB,按遙控器每按一次衰減1dB,
上傳時間: 2016-12-30
上傳用戶:VRMMO
ABC_FDTD_Die(T) Implements simulation of a Gaussian Pulse over T time steps. ABC are for free space. If boundaries are in the Dielectric medium then the ABC fail. Dielectric medium begin and end can be specified with the code
標簽: ABC_FDTD_Die Implements simulation Gaussian
上傳時間: 2013-12-22
上傳用戶:caiiicc
ABC_FDTD_Die(T) Implements simulation of a Gaussian Pulse over T time steps. ABC are for free space. If boundaries are in the Dielectric medium then the ABC fail. Dielectric medium begin and end can be specified with the code
標簽: ABC_FDTD_Die Implements simulation Gaussian
上傳時間: 2014-07-27
上傳用戶:LIKE
詞法分析 1 試驗目的 設計,編制并調試一個此法分析程序,加深對此法分原理的理解. 2 試驗要求 1)待分析的簡單語言的詞法 * 關鍵字: begin if then while do end 所有關鍵字都是小寫. 2)運算符和界符: : = + * - / < <= <> > >= = ( ) # 3)其他單詞是標識符(ID)和整數型常數(NUM),通過一下正規式定義: ID=letter (letter|digit)* NUM=digit digit* 4)空格由空白,制表符和換行符組成,空格一般用來分隔ID,NUM,運算符,界符和關鍵字,此法分析階段通常被忽略. 3 各種單詞符號對應的種別碼如表所示
上傳時間: 2017-01-08
上傳用戶:dongqiangqiang