part1 // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("fil ...
分类:
其他好文 时间:
2020-01-01 10:03:05
阅读次数:
90
内核3.10,systemctl start docker 被阻塞,没有返回,查看状态为启动中。 某兄弟机器安装docker之后,发现systemctl start docker的时候阻塞,由于排查走了一些弯路,记录如下: level=warning msg="could not change gr ...
分类:
其他好文 时间:
2019-12-31 21:25:59
阅读次数:
334
require([ "esri/Map", //底图 "esri/Basemap", //视图 "esri/views/MapView", //图层 瓦片层 "esri/layers/WebTileLayer", //几何 点 "esri/geometry/Point", // 符号/简单标记符号 ...
分类:
其他好文 时间:
2019-12-31 12:16:59
阅读次数:
86
本文转自 http://blog.csdn.net/chieryu/article/details/54602331 这篇文章翻译自《How to do Graduate level Research: Some Advice》 1. 介绍 这篇文章是为了给研究生,尤其是博士研究生提供些有用的建议的 ...
分类:
其他好文 时间:
2019-12-31 10:46:44
阅读次数:
136
API规范: 和`LAPACK` 和`LAPACK BLAS LAPACK BLAS`中第三个Level的函数. 规范实现 基于 规范的矩阵库包括开源的ATLAS, OpenBLAS等, 商业的Intel MKL, Nvidia cuBLAS等. Netlib用Fotran语言实现了BLAS和LAP ...
分类:
其他好文 时间:
2019-12-31 01:00:00
阅读次数:
166
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Li... ...
MainWidget* mainWindow = nullptr; foreach (QWidget *w, qApp->topLevelWidgets()){ if (MainWidget* mainWidget = qobject_cast<MainWidget*>(w)) mainWindow... ...
分类:
其他好文 时间:
2019-12-30 14:48:27
阅读次数:
104
作为从grunt、gulp一路走来的老码农,一开始用webpack的时候我是很抗拒的。但由于核心库使用了vue,而webpack又是vue的最佳拍档(vue作者专门为其写了vue-loader),所以用webpack来构建项目就成了自然而然的事情。经过一段时间的摸索,各个流程都跑通了,「从入门到放弃 ...
分类:
Web程序 时间:
2019-12-29 23:54:21
阅读次数:
118
z检验: 计算临界值:scipy.stats.norm.ppf(level_of_confidence) 计算p值:scipy.stats.norm.sf(abs(z_score)) 或 1-scipy.stats.norm.cdf(abs(z_score)) 左尾或右尾,双尾检验需在此基础上乘以2 ...
分类:
编程语言 时间:
2019-12-29 16:31:57
阅读次数:
774