码迷,mamicode.com
首页 >  
搜索关键字:figure    ( 2425个结果
nginx编译增加模块
查看当前编译 nginx -V 增加 --with-http_stub_status_module 监控nginx状态 进入我们之前的解压包路径 ./configure --prefix=/data/nginx --with-stream --with-http_stub_status_module ...
分类:其他好文   时间:2020-06-24 11:48:29    阅读次数:61
泊松分布
泊松分布泊松分布适用于在随机时间和空间上发生事件的情况,其中,我们只关注事件发生的次数。当以下假设有效时,则称为泊松分布:* 任何一个成功的事件都不应该影响另一个成功的事件。* 在短时间内成功的概率必须等于在更长的时间内成功的概率。* 时间间隔很小时,成功的概率趋近于零。 𝛌是事件发生的频率,也就 ...
分类:其他好文   时间:2020-06-23 15:51:30    阅读次数:113
【leetcode】1465. Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts
题目如下: Given a rectangular cake with height h and width w, and two arrays of integers horizontalCuts and verticalCuts where horizontalCuts[i] is the di ...
分类:其他好文   时间:2020-06-22 15:31:47    阅读次数:45
java.lang.NoClassDefFoundError: org/springframework/boot/actuate/
2020-06-19 10:36:40.117 [dd47dcbc-c72f-4791-8c4f-ef4019382537] ERROR org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/].[dispatcherServle ...
分类:编程语言   时间:2020-06-22 10:56:08    阅读次数:236
使用mpich搭建MPI集群
使用mpich搭建MPI集群 1. 下载mpich wget http://www.mpich.org/static/downloads/3.3/mpich-3.3.tar.gz 2. 解压 tar xzf mpich-3.3.tar.gz 3. 创建mpi的安装路径 /home/omnisky/x ...
分类:其他好文   时间:2020-06-21 17:53:27    阅读次数:88
nginx环境搭建
nginx环境搭建 准备工作 nginx是C语言开发的所以安装gcc必不可少 yum install gcc-c++ 安装PCRE yum install -y pcre pcre-devel zlib压缩解压缩 yum install -y zlib zlib-devel openssl协议 yu ...
分类:其他好文   时间:2020-06-21 11:33:04    阅读次数:58
Python机器学习(六十六)Matplotlib 基本概念
Figure/绘图 Figure表示整个绘图,可以理解为一个画布,绘图中可以包含多个子图形(subplot)。 如果不显式创建figure,会使用默认的figure。 示例 显式创建figure # 创建一个大小为8x6英寸的图形,每英寸80个点 plt.figure(figsize=(8, 6), ...
分类:编程语言   时间:2020-06-21 00:27:00    阅读次数:66
mybatis增删查改
查询数据,前面已经讲过简单的查询单个用户数据,在这里将查询出用户列表,要查询出列表,也就是返回 List, 在我们这个例子中也就是List<User> , 要以这种方式返回数据,需要在User.xml里面配置返回的类型 resultMap, 注意不是 resultType, 而这个resultMap ...
分类:其他好文   时间:2020-06-21 00:04:04    阅读次数:43
Python机器学习(六十八)Matplotlib 多个图形
个图(figure)中可以包含多个子图(subplot)。 subplot 可以使用subplot()添加子图。 示例 创建2个子图,水平排列。 # 导入numpy库与matplotlib.pyplot库 import numpy as np import matplotlib.pyplot as ...
分类:编程语言   时间:2020-06-20 23:46:40    阅读次数:65
LSQUIC
要构建LSQUIC,您需要CMake,zlib和BoringSSL。该示例程序使用libevent提供事件循环。 BoringSSL git clone https://boringssl.googlesource.com/boringssl cd boringssl; mkdir build; c ...
分类:其他好文   时间:2020-06-20 01:26:45    阅读次数:89
2425条   上一页 1 ... 11 12 13 14 15 ... 243 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!