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

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

finite-size

  • The inverse of the gradient function. I ve provided versions that work on 1-d vectors, or 2-d or 3-d

    The inverse of the gradient function. I ve provided versions that work on 1-d vectors, or 2-d or 3-d arrays. In the 1-d case I offer 5 different methods, from cumtrapz, and an integrated cubic spline, plus several finite difference methods. In higher dimensions, only a finite difference/linear algebra solution is provided, but it is fully vectorized and fully sparse in its approach. In 2-d and 3-d, if the gradients are inconsistent, then a least squares solution is generated

    標簽: gradient function provided versions

    上傳時間: 2016-11-07

    上傳用戶:秦莞爾w

  • 非線性有限元程序

    非線性有限元程序,NONSAP is a general finite element program for the nonlinear static and dynamic analysis of complex structures. The program is very flexible and was designed to be extended and modified by the user. In particular the program can easily be modified to use a different formulation of the equations of motions, different time integration operators and other additional options.

    標簽: 非線性 有限元 程序

    上傳時間: 2016-11-12

    上傳用戶:hopy

  • C 開發的有限元軟件

    C 開發的有限元軟件,界面還可以,不錯,可以試試。 FElt is a free system for introductory level finite element analysis. It is primarily intended as a teaching tool for introductory type courses in finite elements - probably in the mechanical/structural/civil fields. In a command line environment, FElt uses an intuitive, straightforward input syntax to describe problems. It also includes a graphical user interface for workstations that allows the user to set-up, solve and post-process the problem in a single CAD-like environment.

    標簽: 有限元 軟件

    上傳時間: 2014-03-09

    上傳用戶:zycidjl

  • 不錯的 PERL 教程 Find a Perl programmer, and you ll find a copy of Perl Cookbook nearby. Perl Cookbook

    不錯的 PERL 教程 Find a Perl programmer, and you ll find a copy of Perl Cookbook nearby. Perl Cookbook is a comprehensive collection of problems, solutions, and practical examples for anyone programming in Perl. The book contains hundreds of rigorously reviewed Perl "recipes" and thousands of examples ranging from brief one-liners to complete applications. The second edition of Perl Cookbook has been fully updated for Perl 5.8, with extensive changes for Unicode support, I/O layers, mod_perl, and new technologies that have emerged since the previous edition of the book. Recipes have been updated to include the latest modules. New recipes have been added to every chapter of the book, and some chapters have almost doubled in size.

    標簽: Cookbook Perl programmer nearby

    上傳時間: 2016-11-23

    上傳用戶:chenbhdt

  • 標準的遺傳算法代碼

    標準的遺傳算法代碼,下面是程序:function y=fitness(chrom,p,aim) global P_cross P_mutation [Popsize len]=size(chrom) fitness_gene=zeros(Popsize,1) in_he=zeros(4,1) out_he=zeros(4,1) in_out=0 out_out=0

    標簽: 標準 代碼 算法

    上傳時間: 2013-12-08

    上傳用戶:pkkkkp

  • The AVRcam source files were built using the WinAVR distribution (version 3.3.1 of GCC). I haven t

    The AVRcam source files were built using the WinAVR distribution (version 3.3.1 of GCC). I haven t tested other versions of GCC, but they should compile without too much difficulty. * The source files for the AVRcam had the author name and copyright information added back into them after the judging of the project, since it states in the competition rules that the author s name can not be present during their inspection. * The included source files are the ones that were submitted for the entry into the Circuit Cellar contest. I have continued to develop the AVRcam, and have added several new features (such as ignoring objects that aren t larger than a minimum size, removing tracked objects that overlap with each, and some general optimizations). If you are interested in the latest source, email me at john@jrobot.net * For more info about the AVRcam, check out http://www.jrobot.net John Orlando August 20, 2004

    標簽: distribution version AVRcam source

    上傳時間: 2016-12-30

    上傳用戶:GavinNeko

  • AR6001 WLAN Driver for SDIO installation Read Me March 26,2007 (based on k14 fw1.1) Windows CE Em

    AR6001 WLAN Driver for SDIO installation Read Me March 26,2007 (based on k14 fw1.1) Windows CE Embedded CE 6.0 driver installation. 1. Unzip the installation file onto your system (called installation directory below) 2. Create an OS design or open an existing OS design in Platform Builder 6.0. a. The OS must support the SD bus driver and have an SD Host Controller driver (add these from Catalog Items). b. Run image size should be set to allow greater than 32MB. 3. a. From the Project menu select Add Existing Subproject... b. select AR6K_DRV.pbxml c. select open This should create a subproject within your OS Design project for the AR6K_DRV driver. 4. Build the solution.

    標簽: installation Windows Driver March

    上傳時間: 2014-09-06

    上傳用戶:yuzsu

  • This a FREE tool chain which compiles C codes into 8051 binary code, converts the binary to RTL ROM,

    This a FREE tool chain which compiles C codes into 8051 binary code, converts the binary to RTL ROM, and simulate in Modelsim. SDCC is the compiler. Example compilation: cd compile sdcc --iram-size 0x80 --xram-size 0x800 t8051.c REM sdcc --iram-size 0x80 t8051.c packihx t8051.ihx > t8051.hex ..\test\mkrom.exe ..\compile\t8051.hex

    標簽: binary compiles converts chain

    上傳時間: 2017-01-07

    上傳用戶:wyc199288

  • void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >=

    void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >= Size || j < 0 || j >= Size ) { return } step++ board[i][j]=step if (step == Size*Size) { showboard() system("PAUSE") return } //DFS Knight(i-2,j-1) //left Knight(i-2,j+1) Knight(i+2,j-1) //right Knight(i+2,j+1) Knight(i-1,j-2) //up Knight(i+1,j-2) Knight(i+1,j+2) //down Knight(i-1,j+2) // board[i][j]=0 step-- }

    標簽: int Knight printf board

    上傳時間: 2014-01-17

    上傳用戶:cxl274287265

  • 密碼學界牛人Victor Shoup用C++編寫數論類庫。 NTL is a high-performance, portable C++ library providing data struct

    密碼學界牛人Victor Shoup用C++編寫數論類庫。 NTL is a high-performance, portable C++ library providing data structures and algorithms for arbitrary length integers for vectors, matrices, and polynomials over the integers and over finite fields and for arbitrary precision floating point arithmetic. NTL provides high quality implementations of state-of-the-art algorithms for: * arbitrary length integer arithmetic and arbitrary precision floating point arithmetic * polynomial arithmetic over the integers and finite fields including basic arithmetic, polynomial factorization, irreducibility testing, computation of minimal polynomials, traces, norms, and more * lattice basis reduction, including very robust and fast implementations of Schnorr-Euchner, block Korkin-Zolotarev reduction, and the new Schnorr-Horner pruning heuristic for block Korkin-Zolotarev * basic linear algebra over the integers, finite fields, and arbitrary precision floating point numbers.

    標簽: high-performance providing portable library

    上傳時間: 2014-01-04

    上傳用戶:exxxds

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久二区二区| 亚洲黄色一区| 国产毛片精品国产一区二区三区| 在线看国产一区| 免费成人高清视频| 欧美亚洲综合网| 欧美在线视频日韩| 欧美日韩色一区| 国产精品久久久一区二区三区| 久久精品成人一区二区三区蜜臀 | 国内视频一区| 欧美午夜电影在线观看| 国产精品第一页第二页第三页| 国产视频一区免费看| 狠狠色综合色区| 最新亚洲激情| 欧美日本国产在线| 亚洲国产成人久久综合一区| 亚洲摸下面视频| 欧美日韩精品久久久| 影院欧美亚洲| 欧美xxx在线观看| 亚洲国产激情| 久久综合免费视频影院| 国产欧美日韩一区二区三区在线观看 | 亚洲色图综合久久| 在线日韩精品视频| 精品成人国产在线观看男人呻吟| 免费观看不卡av| 蜜臀av在线播放一区二区三区| 樱桃国产成人精品视频| 久久天天综合| 亚洲黄色在线视频| 国产嫩草影院久久久久| 久久免费黄色| 在线免费观看一区二区三区| 欧美日韩国产在线播放| 亚洲日本欧美日韩高观看| 亚欧成人在线| 一区二区三区在线视频免费观看| 久久精品一区二区三区四区| 一区二区三区在线观看欧美| 久久在线免费观看视频| 国产欧美欧美| 欧美激情视频在线播放| 亚洲日本国产| 欧美伦理在线观看| 一本综合久久| 狠狠噜噜久久| 欧美日韩一区二区视频在线观看 | 欧美日韩精品免费观看视频| 韩国三级电影久久久久久| 国产午夜精品全部视频在线播放| 亚洲午夜av| 亚洲日本aⅴ片在线观看香蕉| 国产日韩欧美在线播放不卡| 久久精品综合一区| 亚洲欧美精品suv| 国产伦精品一区二区三区高清| 激情婷婷欧美| 久久精品av麻豆的观看方式| 一区二区三区 在线观看视| 亚洲日韩中文字幕在线播放| 欧美第十八页| 在线日韩欧美| 国产精品免费看片| 欧美激情视频网站| 性xx色xx综合久久久xx| 日韩视频永久免费观看| 国内成人在线| 亚洲人成毛片在线播放| 国产精品免费一区二区三区在线观看 | 亚洲一区国产精品| 激情国产一区| 国产在线精品自拍| 国产欧美亚洲日本| 国产综合色产| 狠狠色香婷婷久久亚洲精品| 狠狠v欧美v日韩v亚洲ⅴ| 国产真实精品久久二三区| 在线国产日韩| 91久久在线视频| 亚洲香蕉网站| 久久天天狠狠| 国产精品久久国产精品99gif | 亚洲国产精品久久人人爱蜜臀| 国产日韩欧美一区二区三区四区| 国产精品久久久久久久久久久久久 | 欧美性视频网站| 国产女人精品视频| 黄色亚洲精品| 日韩亚洲欧美中文三级| 亚洲午夜三级在线| 久久国产日本精品| 欧美成人69av| 国产精品成人一区二区三区吃奶| 国产精品自拍三区| 亚洲第一伊人| 激情久久久久| 亚洲欧美激情视频| 国产伦理一区| 欧美一区二区三区喷汁尤物| 伊人影院久久| 欧美日韩精品一区视频 | 亚洲综合色噜噜狠狠| 亚洲一区精品电影| 最新中文字幕亚洲| 国产日本欧美一区二区三区在线| 国产午夜精品一区二区三区视频| 极品尤物久久久av免费看| 夜夜狂射影院欧美极品| 久久黄色级2电影| 国产日韩欧美日韩| 午夜精品成人在线视频| 免费人成网站在线观看欧美高清| 国产精品一区二区久久| 99精品视频免费观看视频| 久久综合99re88久久爱| 99综合精品| 国产欧美一区二区精品忘忧草| 亚洲一区中文字幕在线观看| 亚洲国产精品久久久久| 亚洲免费一区二区| 欧美日韩亚洲高清一区二区| 影视先锋久久| 另类专区欧美制服同性| 国产日韩一区二区三区在线| 亚洲视频 欧洲视频| 欧美视频在线视频| 亚洲欧美99| 国产日韩欧美一区| 久久精品视频播放| 亚洲国产成人一区| 欧美日本在线看| 一区二区三区 在线观看视| 欧美日韩国产免费| 亚洲免费在线播放| 国语自产精品视频在线看抢先版结局 | 欧美午夜大胆人体| 亚洲午夜影视影院在线观看| 国产精品久久91| 久久久久久久久久久久久9999| 在线观看国产精品网站| 欧美激情视频免费观看| 亚洲免费影视第一页| 尤物99国产成人精品视频| 欧美乱妇高清无乱码| 午夜影视日本亚洲欧洲精品| 在线观看日韩一区| 国产精品一区三区| 欧美激情一区二区| 久久久久久久999精品视频| 一区二区欧美在线| 在线日韩电影| 国产区欧美区日韩区| 欧美伦理a级免费电影| 久久久久久噜噜噜久久久精品 | 亚洲三级视频| 日韩香蕉视频| 欧美**字幕| 欧美视频在线观看一区二区| 国产一区二区三区不卡在线观看| 亚洲激情影视| 蜜臀va亚洲va欧美va天堂| 久久中文久久字幕| 尤物精品在线| 欧美国产日韩一区二区在线观看| 亚洲欧洲三级| 国产精品久久久久久久久久免费| 香蕉久久a毛片| 在线免费不卡视频| 欧美日韩系列| 欧美一区二区三区另类| 亚洲国产影院| 国产精品午夜电影| 在线成人中文字幕| 欧美天天综合网| 久久精品视频在线观看| 日韩天堂在线视频| 国产婷婷色一区二区三区在线 | 亚洲视频自拍偷拍| 极品尤物av久久免费看| 欧美久久视频| 久久久综合香蕉尹人综合网| aa级大片欧美| 精品粉嫩aⅴ一区二区三区四区| 欧美三级电影一区| 噜噜噜久久亚洲精品国产品小说| 亚洲一区二区少妇| 亚洲国产欧洲综合997久久| 欧美理论在线播放| 久久人91精品久久久久久不卡| 日韩一区二区久久| 91久久精品国产91久久| 欧美日韩国产区| 亚洲国产精选| 香蕉国产精品偷在线观看不卡| 国自产拍偷拍福利精品免费一| 久久美女性网| 一区二区av在线|