1、动态SQL的元素: if choose (when, otherwise) trim (where, set) foreach bind if choose (when, otherwise) trim (where, set) foreach bind 2、if语句: <select id=" ...
分类:
其他好文 时间:
2017-10-16 22:12:08
阅读次数:
172
初次安装git需要配置用户名和邮箱,否则git会提示:please tell me who you are. 你需要运行命令来配置你的用户名和邮箱: $ git config --global user.name "superGG1990" $ git config --global user.em ...
分类:
系统相关 时间:
2017-09-03 12:10:37
阅读次数:
1126
1、首先在创建字段时候选择类型 Formula 2、第二步字段类型我选择了 Text 3、编辑公式: 4、保存搞定! ...
分类:
其他好文 时间:
2017-08-04 11:57:49
阅读次数:
133
Visual Stdio 环境下使用 GSL (GNU Scientific Library) 经測试。这里的方法不适用于VS2015。 * 这篇文章有点过时了。建议从以下网址下载能够在 vs 环境下编译的 GSL:* https://github.com/BrianGladman/gsl GNU ...
分类:
其他好文 时间:
2017-07-17 18:48:08
阅读次数:
227
GSL(GNU Scientific Library)作为三大科学计算库之一,除了涵盖基本的线性代数,微分方程,积分,随机数,组合数,方程求根,多项式求根,排序等,还有模拟退火,快速傅里叶变换,小波,插值,基本样条,最小二乘拟合,特殊函数等。下面介绍一下GSL的安装和使用。 方法一: 首先从官网下载 ...
分类:
系统相关 时间:
2017-06-30 14:03:58
阅读次数:
290
package main import ( "fmt" ) func InsertSpringSliceCopy(slice, insertion []string, index int) []string { result :=make([]string, len(slice)+len(inser... ...
分类:
其他好文 时间:
2017-06-28 17:12:28
阅读次数:
153