亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

kling修復(fù)

  • 用RBF神經網絡

    用RBF神經網絡,完成對y=f(x)的曲線擬合。

    標簽: RBF 神經網絡

    上傳時間: 2013-12-06

    上傳用戶:mikesering

  • 程序設計思路 在動態規劃中

    程序設計思路 在動態規劃中,可將一個問題的解決方案視為一系列決策的結果,要考察每個最優決策序列中是否包含一個最優子序列。所以在最短路徑問題中,假如在的第一次決策時到達了某個節點v,那么不管v 是怎樣確定的,此后選擇從v 到d 的路徑時,都必須采用最優策略。利用最優序列由最優子序列構成的結論,可得到f 的遞歸式。f ( 1 ,c) 是初始時背包問題的最優解。可使用(1)中所示公式通過遞歸或迭代來求解f ( 1 ,c)。從f (n, * )開始迭式, f (n, * )由第一個式子得出,然后由第二式遞歸計算f (i,*) ( i=n- 1,n- 2,⋯ , 2 ),最后得出f ( 1 ,c)。動態規劃方法采用最優原則( principle of optimality)來建立用于計算最優解的遞歸式。所謂最優原則即不管前面的策略如何,此后的決策必須是基于當前狀態(由上一次決策產生)的最優決策。由于對于有些問題的某些遞歸式來說并不一定能保證最優原則,因此在求解問題時有必要對它進行驗證。若不能保持最優原則,則不可應用動態規劃方法。

    標簽: 程序設計 動態規劃

    上傳時間: 2016-12-03

    上傳用戶:kristycreasy

  • 數字音樂盒 (1) 硬件電路中用P1.0~P1.7控制按鍵

    數字音樂盒 (1) 硬件電路中用P1.0~P1.7控制按鍵,其中P1.0~P1.3掃描行,P1.4~P1.7掃描列。 (2) 用P0.0~P0.7,P2.0~P2.7控制LED,其中P0.0~P0.7控制七段碼a,b,c,d,e,f,g,用P2.0~P2.7為數碼管位選信號。 (3) 用,P2.0~P2.2作為LCD的RS,R/W,E的控制信號。用P0.0~P0.7作為LCD的D0~D7的控制信號。 (4) 用P3.7口控制蜂鳴器(J2,J4斷開,J3短接)。 (5) 電路為12MHZ晶振頻率工作,起振電路中C1,C2均為30pf。

    標簽: 1.0 1.7 數字 控制

    上傳時間: 2016-12-03

    上傳用戶:ruixue198909

  • 成績顯示三個部份abc #include<stdio.h> #include<stdlib.h> int main(void) { float gread

    成績顯示三個部份abc #include<stdio.h> #include<stdlib.h> int main(void) { float gread printf("請輸入分數\n") scanf("%f",&gread) if(gread>=80&&gread<=100) printf("成績為A\n") else if(gread>=60&&gread<=79) { printf("成績為B\n") } else if(gread>=0&&gread<60) { printf("成績為C\n") } else { printf("分數輸入錯誤\n") } system("pause") return 0 }

    標簽: include stdlib float gread

    上傳時間: 2014-01-15

    上傳用戶:waizhang

  • The literature of cryptography has a curious history. Secrecy, of course, has always played a centra

    The literature of cryptography has a curious history. Secrecy, of course, has always played a central role, but until the First World War, important developments appeared in print in a more or less timely fashion and the field moved forward in much the same way as other specialized disciplines. As late as 1918, one of the most influential cryptanalytic papers of the twentieth century, William F. Friedman’s monograph The Index of Coincidence and Its Applications in Cryptography, appeared as a research report of the private Riverbank Laboratories [577]. And this, despite the fact that the work had been done as part of the war effort. In the same year Edward H. Hebern of Oakland, California filed the first patent for a rotor machine [710], the device destined to be a mainstay of military cryptography for nearly 50 years.

    標簽: cryptography literature has Secrecy

    上傳時間: 2016-12-08

    上傳用戶:fxf126@126.com

  • function [U,center,result,w,obj_fcn]= fenlei(data) [data_n,in_n] = size(data) m= 2 % Exponent fo

    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

  • 用.net做的網絡倉庫信息管理系統

    用.net做的網絡倉庫信息管理系統,實現在線式人員,貨物等修信息的管理。

    標簽: net 網絡 倉庫 信息管理系統

    上傳時間: 2013-12-25

    上傳用戶:gyq

  • made by: kangkai data:2008.11.23 this one is used to test arm7 str71x. use a led to test

    made by: kangkai data:2008.11.23 this one is used to test arm7 str71x. use a led to test GPIO. a---------P0.0 b---------P0.1 c---------P0.2 d---------P0.3 e---------P0.4 f---------P0.5 g---------P0.6 just run it and you will see the led to show 0-9 all the time.

    標簽: test kangkai made 2008

    上傳時間: 2016-12-16

    上傳用戶:moerwang

  • 利用花指令擾亂Cracker

    利用花指令擾亂Cracker,以達到保護軟件的作用。 本工具可以自定義花指令,有三種模式,如下: 1、隨機插入花指令 2、指定插入固定的花指令 3、全部插入花指令 使用方法: 1、請自行在 JunkData.mdb 數據庫中添加花指令 2、在您要放花指令的地方寫:{$F Junk} 3、{$F Junk} 為花指令標記 4、用本工具處理后,重新編譯即可。

    標簽: Cracker 指令

    上傳時間: 2013-12-27

    上傳用戶:Altman

  • 重慶某紙業公司的固定資產管理系統

    重慶某紙業公司的固定資產管理系統,主要有以下功能: 資產管理 折舊管理 查詢管理 報表管理 系統管理 增加固定資產 減少固定資產 借出固定資產 歸還固定資產 送修固定資產 完修固定資產 計算月度折舊 統計月度折舊 匯總月度折舊 查詢減少資產 查詢送修資產 查詢完修資產 查詢出借資產 查詢歸還資產 資產卡片報表 累計折舊報表 部門資產報表 分類資產報表 登錄管理系統 退出管理系統 新建操作用戶 修改用戶信息 修改用戶密碼 查詢用戶密碼 分配用戶權限 公司信息設置 公司部門設置 系統幫助信息

    標簽: 管理系統

    上傳時間: 2014-12-08

    上傳用戶:jcljkh

主站蜘蛛池模板: 犍为县| 怀集县| 神农架林区| 正宁县| 商河县| 安图县| 双江| 五家渠市| 天柱县| 长海县| 海阳市| 龙南县| 皋兰县| 天门市| 肥城市| 双牌县| 利津县| 乡城县| 岚皋县| 扶沟县| 尤溪县| 黔西县| 广西| 上杭县| 宁城县| 迭部县| 新野县| 石棉县| 崇礼县| 拜泉县| 景东| 沭阳县| 东莞市| 蒙山县| 许昌市| 广灵县| 雷波县| 中山市| 塔城市| 台东市| 正阳县|