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

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

L<b>IN</b>phone

  • 離散實驗 一個包的傳遞 用warshall

     實驗源代碼 //Warshall.cpp #include<stdio.h> void warshall(int k,int n) { int i , j, t; int temp[20][20]; for(int a=0;a<k;a++) { printf("請輸入矩陣第%d 行元素:",a); for(int b=0;b<n;b++) { scanf ("%d",&temp[a][b]); } } for(i=0;i<k;i++){ for( j=0;j<k;j++){ if(temp[ j][i]==1) { for(t=0;t<n;t++) { temp[ j][t]=temp[i][t]||temp[ j][t]; } } } } printf("可傳遞閉包關系矩陣是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元關系的可傳遞閉包\n"); void warshall(int,int); int k , n; printf("請輸入矩陣的行數 i: "); scanf("%d",&k); 四川大學實驗報告 printf("請輸入矩陣的列數 j: "); scanf("%d",&n); warshall(k,n); } 

    標簽: warshall 離散 實驗

    上傳時間: 2016-06-27

    上傳用戶:梁雪文以

  • 安森美車規級1080P圖像傳感器AR0231手冊

    AR0231AT7C00XUEA0-DRBR(RGB濾光)安森美半導體推出采用突破性減少LED閃爍 (LFM)技術的新的230萬像素CMOS圖像傳感器樣品AR0231AT,為汽車先進駕駛輔助系統(ADAS)應用確立了一個新基準。新器件能捕獲1080p高動態范圍(HDR)視頻,還具備支持汽車安全完整性等級B(ASIL B)的特性。LFM技術(專利申請中)消除交通信號燈和汽車LED照明的高頻LED閃爍,令交通信號閱讀算法能于所有光照條件下工作。AR0231AT具有1/2.7英寸(6.82 mm)光學格式和1928(水平) x 1208(垂直)有源像素陣列。它采用最新的3.0微米背照式(BSI)像素及安森美半導體的DR-Pix?技術,提供雙轉換增益以在所有光照條件下提升性能。它以線性、HDR或LFM模式捕獲圖像,并提供模式間的幀到幀情境切換。 AR0231AT提供達4重曝光的HDR,以出色的噪聲性能捕獲超過120dB的動態范圍。AR0231AT能同步支持多個攝相機,以易于在汽車應用中實現多個傳感器節點,和通過一個簡單的雙線串行接口實現用戶可編程性。它還有多個數據接口,包括MIPI(移動產業處理器接口)、并行和HiSPi(高速串行像素接口)。其它關鍵特性還包括可選自動化或用戶控制的黑電平控制,支持擴頻時鐘輸入和提供多色濾波陣列選擇。封裝和現狀:AR0231AT采用11 mm x 10 mm iBGA-121封裝,現提供工程樣品。工作溫度范圍為-40℃至105℃(環境溫度),將完全通過AEC-Q100認證。

    標簽: 圖像傳感器

    上傳時間: 2022-06-27

    上傳用戶:XuVshu

  • I. C. Wong, Z. Shen, J. G. Andrews, and B. L. Evans, ``A Low Complexity Algorithm for Proportional R

    I. C. Wong, Z. Shen, J. G. Andrews, and B. L. Evans, ``A Low Complexity Algorithm for Proportional Resource Allocation in OFDMA Systems , Proc. IEEE Int. Work. Signal Processing Systems, 針對這篇文章給出的源代碼

    標簽: I. C. B. G.

    上傳時間: 2014-01-24

    上傳用戶:zhichenglu

  • 用于計算CIE顏色空間的L,a,b值。

    用于計算CIE顏色空間的L,a,b值。

    標簽: CIE 計算 顏色空

    上傳時間: 2013-12-18

    上傳用戶:1051290259

  • M AT L A B是一個可視化的計算程序

    M AT L A B是一個可視化的計算程序,被廣泛地使用于從個人計算機到超級計算機范圍內 的各種計算機上。matlab學習手冊

    標簽: AT 可視化 計算 程序

    上傳時間: 2015-06-24

    上傳用戶:zhengjian

  • fbkldfmlb n/ovk,e vml bhdsrb mor brb n/sZPer b vk,epabho,l rnopazbhlrepofrt,epsho

    fbkldfmlb n/ovk,e vml bhdsrb mor brb n/sZPer b vk,epabho,l rnopazbhlrepofrt,epsho

    標簽: rnopazbhlrepofrt fbkldfmlb bhdsrb epabho

    上傳時間: 2014-01-25

    上傳用戶:ANRAN

  • Distributed Median,Alice has an array A, and Bob has an array B. All elements in A and B are distinc

    Distributed Median,Alice has an array A, and Bob has an array B. All elements in A and B are distinct. Alice and Bob are interested in finding the median element of their combined arrays.

    標簽: array B. Distributed has

    上傳時間: 2013-12-25

    上傳用戶:洛木卓

  • About: hamsterdb is a database engine written in ANSI C. It supports a B+Tree index structure, uses

    About: hamsterdb is a database engine written in ANSI C. It supports a B+Tree index structure, uses memory mapped I/O (if available), supports cursors, and can create in-memory databases. Release focus: Major feature enhancements Changes: This release comes with many changes and new features. It can manage multiple databases in one file. A new flag (HAM_LOCK_EXCLUSIVE) places an exclusive lock on the file. hamsterdb was ported to Windows CE, and the Solution file for Visual Studio 2005 now supports builds for x64. Several minor bugs were fixed, performance was improved, and small API changes occurred. Pre-built libraries for Windows (32-bit and 64-bit) are available for download. Author: cruppstahl

    標簽: C. hamsterdb structure database

    上傳時間: 2013-12-11

    上傳用戶:LouieWu

  • 2004China Undergraduate Mathematical Contest in Modeling (CUMCM)是2004年全國數學建模大賽的題目(B題)?,F將題目

    2004China Undergraduate Mathematical Contest in Modeling (CUMCM)是2004年全國數學建模大賽的題目(B題)。現將題目,建模過程及利用“多元線性回歸和人工神經網絡”解題的源代碼上傳給大家一起分享。

    標簽: 2004 Undergraduate Mathematical Modeling

    上傳時間: 2014-01-08

    上傳用戶:youth25

  • function Binary_Search(L,a,b,x) begin if a>b then return(-1) else begin m:=(a+b) div 2

    function Binary_Search(L,a,b,x) begin if a>b then return(-1) else begin m:=(a+b) div 2 if x=L[m] then return(m) else if x>L[m] then

    標簽: begin Binary_Search function return

    上傳時間: 2015-12-17

    上傳用戶:tb_6877751

主站蜘蛛池模板: 阜新| 和龙市| 那坡县| 吐鲁番市| 黑河市| 大港区| 新乡县| 修武县| 瑞金市| 前郭尔| 五家渠市| 方城县| 金秀| 凌云县| 社会| 桂平市| 韩城市| 阿巴嘎旗| 靖安县| 故城县| 永吉县| 封开县| 柳江县| 察隅县| 安多县| 茂名市| 灵宝市| 秦皇岛市| 措勤县| 永新县| 沧州市| 吴旗县| 南京市| 恭城| 常州市| 蚌埠市| 大渡口区| 武安市| 顺平县| 九江市| 吉林省|