码迷,mamicode.com
首页 >  
搜索关键字:ati    ( 26493个结果
MATLAB读取TECPLOT笛卡尔网格三维流场数据
tecplot按照网格点逐点输出数据到文件,一个点的坐标及其相关数据写成一行,更具数据文件头可以知道,一行含七个数据,分别是x,y,z,u,v,w,rho。 1、matlab读取tecplot文件,将数据存贮到三维数组中,并保存变量到mat文件以供调用 2、测试函数 ...
分类:其他好文   时间:2017-11-16 19:39:11    阅读次数:314
Hadoop自带Sort例子分析
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this... ...
分类:其他好文   时间:2017-11-16 17:18:17    阅读次数:144
053-57
Which background process of a database instance, using Automatic Storage Management (ASM), connects as a foreground process into the ASM instance?A. A ...
分类:其他好文   时间:2017-11-16 16:23:19    阅读次数:136
java.io.IOException: Illegal partition for 67 (-1)
今天写MapReduce的分区进行排序的功能,自己写了一个Partitioner,然后用的时候就错了 public static class MyPartition extends Partitioner { @Override public int getPartition(IntWritable... ...
分类:编程语言   时间:2017-11-16 14:37:51    阅读次数:176
【tij学习笔记】Java finalize()的使用
《Java编程思想》中有提到,Java的垃圾回收器并不是那么靠谱,垃圾回收会占用很大的资源开销,垃圾回收器很懒,当变量和对象不再被引用、脱离作用域的时候,垃圾回收器会不定时的进行垃圾回收,也就是说,当内存资源紧张的时候,垃圾回收器才会以最快速度主动去回收资源释放内存,其他时候可能会回收也可能不会。 ...
分类:编程语言   时间:2017-11-16 14:30:37    阅读次数:220
python gdal 数组生成图片
cols = array.shape[1]rows = array.shape[0]originX = rasterOrigin[0]originY = rasterOrigin[1]driver = gdal.GetDriverByName('GTiff')outRaster = driver.C ...
分类:编程语言   时间:2017-11-16 14:28:04    阅读次数:387
js事件兼容处理
js事件兼容处理 ...
分类:Web程序   时间:2017-11-16 14:26:34    阅读次数:162
前台开发总结+代码常识
前台开发总结+代码常识 注:最近做了前端页面相关的东西,保存一些笔记。 1、 JS 文件路径问题: 两个//:表示绝对路径, 一个/:表示相对路径(相对于Tomcat:Tomcat名+ Webapp 的子路径) 2、 给点击事件传参:传入this即可 3、if 条件 判断对象+动态根据 ID 获取控... ...
分类:其他好文   时间:2017-11-16 14:22:21    阅读次数:158
mysql 创建数据库
guoguos-MacBook-Pro:myblog guoguo$ mysql -uroot -p123456mysql: [Warning] Using a password on the command line interface can be insecure.Welcome to the ...
分类:数据库   时间:2017-11-16 14:18:47    阅读次数:165
java 四舍五入 保留n为数
package com.clzhang.sample; import java.math.BigDecimal;import java.math.RoundingMode;import java.text.DecimalFormat;import java.text.NumberFormat; pu ...
分类:编程语言   时间:2017-11-16 14:12:04    阅读次数:175
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!