CEll组件和插件的入门教程 教你如何使用Cell组件和插件使你迅速入门其中还附有帮助文档
2022-12-07 14:48:57 1.35MB CEll组件和插件
1
8-port sram memory cell, with 8 write or 16 reads simutaneously
2022-11-24 21:27:39 3.84MB sram memory
1
一个简单实用类 using Aspose Cells; class AsposeExcel { private string outFileName ""; private string fullFilename ""; private Workbook book null; private Worksheet sheet null; public AsposeExcel string outfilename 导出构造数 { outFileName outfilename; book new Workbook ; sheet book Worksheets[0]; } private void AddTitle string title int rowIndex int columnIndex { Cell cell1 sheet Cells[rowIndex columnIndex]; cell1 PutValue title ; } private void AddHeader DataTable dt int rowIndex int columnIndex { Cell cell null; for int col 0; col < dt Columns Count; col++ { cell sheet Cells[rowIndex col + columnIndex]; cell PutValue dt Columns[col] ColumnName ; } } private void AddBody DataTable dt int rowIndex int columnIndex { for int r 0; r < dt Rows Count; r++ { for int c 0; c < dt Columns Count; c++ { sheet Cells[r + rowIndex c + columnIndex] PutValue dt Rows[r][c] ToString ; } } } 导出 public Boolean DatatableToExcel DataTable dt int rowIndex int columnIndex { Boolean yn false; try { sheet Name sheetName; AddHeader dt rowIndex columnIndex ; AddBody dt rowIndex+1 columnIndex+1 ; sheet AutoFitColumns ; sheet AutoFitRows ; book Save outFileName ; yn true; return yn; } catch Exception e { return yn; } } }">一个简单实用类 using Aspose Cells; class AsposeExcel { private string outFileName ""; private string fullFilename ""; private Workbook book null; private Worksheet sheet null; public AsposeExcel string outfilename 导 [更多]
2022-11-15 10:54:47 11.64MB Aspose cell Excel
1
二阶RC等效电路电池模型,电池建模入门必备
1
广义图胞映射算法,基于广义胞映射和图论算法,HSU
2022-10-27 14:55:35 4.55MB cell mapping
1
Tddi TFT+CTP驱动控制器
2022-09-16 09:05:49 3.32MB DRIVER TFTLCD TOUCHPANELCTP
1
当UITableView遇到多cell时,往往我们要建立多个cell,这是就会显得类多,臃肿。 demo采用了工厂模式,用父类cell指针指向子类cell,减少类臃肿,不好维护的效果
2022-08-18 01:29:17 51KB UITableView 多cell 优雅 减少臃肿
1
点击button动态的添加一个cell,解决了一些小问题分享给大家!
2022-08-08 16:27:49 439KB 101
1
cell插件5.3.9.15 网上收藏 转载备用
2022-07-25 14:31:48 22.75MB cell 5.3.9.15
1
多对象单细胞反卷积(MuSiC) MuSiC是一种反卷积方法,它利用跨学科的scRNA-seq来估计大量RNA-seq数据中的细胞类型比例。 如何引用MuSiC 请引用以下出版物: 具有多对象单细胞表达参考的大体积组织细胞类型反卷积X.Wang,J.Park,K.Susztak,NRNR Zhang,M.Li 自然通讯。 2019年1月22日 安装 # install devtools if necessary install.packages( ' devtools ' ) # install the MuSiC package devtools :: install_github( ' xuranw/MuSiC ' ) # load library( MuSiC ) 更多信息 请参阅。
2022-07-13 15:18:32 62.98MB statistical-genetics single-cell-rna-seq R
1