码迷,mamicode.com
首页 >  
搜索关键字:uniform size    ( 49821个结果
地图控件 标尺 缩放级别 监听缩放级别
var map = new BMapGL.Map('map',{ minZoom:8, maxZoom:12, // 设置显示类型 MapType: BMAP_NORMAL_MAP }); // 设置中心点 var point = new BMapGL.Point(116.404,39.915); ...
分类:其他好文   时间:2021-04-06 14:48:41    阅读次数:0
Shortcut Keys Configure of Typora
Shortcut Keys Configure Summary You can use shortcut keys to quickly insert or modify styles or do other operations supported by Typora. You can find ...
分类:其他好文   时间:2021-04-06 14:21:02    阅读次数:0
CentOS 7 直接安装 gcc 7
在一台没有安装过低版本gcc的系统里,如何安装gcc 7 ?以下是详细步骤。 使用开发工具集安装: sudo yum install centos-release-scl sudo yum install devtoolset-7-gcc*scl enable devtoolset-7 bashwh ...
分类:其他好文   时间:2021-04-05 12:45:01    阅读次数:0
2021.4.3| ROS下相机标定
启动摄像头 roslaunch robot_vision usb_cam.launch 启动标定包 rosrun camera_calibration cameracalibrator.py --size 8x6 --square 0.024 image:=/usb_cam/image_raw ca ...
分类:其他好文   时间:2021-04-05 12:33:09    阅读次数:0
个人常用的 matplotlib 绘图模板
import numpy as np import matplotlib import matplotlib.pyplot as plt matplotlib.rcParams['mathtext.fontset']='stix' plt.xlim(0, 5.5) plt.ylim(-5, 100) ...
分类:其他好文   时间:2021-04-05 12:14:03    阅读次数:0
随机数模板
namespace rad{ mt19937_64 R(time(0)); inline int Rand(int l,int r){ uniform_int_distribution<int> distribution(l,r); return distribution(R); } } using ...
分类:其他好文   时间:2021-04-05 12:01:44    阅读次数:0
内置函数_id
id(): 以数字形式查看内存地址 示例代码: s = 'hello' print(id(s)) # 139620916353264 View Code ...
分类:其他好文   时间:2021-04-05 11:55:25    阅读次数:0
高阶函数_filter
filter介绍与作用: """ 1. 说明: 在Python2中是一个内置函数,在Python3中它是内置类 内置函数和内置类都在[builtin.py]文件中 2. 作用: 对可迭代对象进行过滤,遍历完后得到一个filter对象。 3. 格式: filter(函数名, 可迭代对象)""" 示例代 ...
分类:其他好文   时间:2021-04-05 11:51:47    阅读次数:0
Best Time to Buy and Sell Stock
暴力求解法,直接遍历求最大值 class Solution { public: int maxProfit(vector<int>& prices) { int maxprofit=0; for(int i=0;i<prices.size();i++) { for(int j=i+1;j<price ...
分类:其他好文   时间:2021-04-05 11:41:37    阅读次数:0
archivelog huge generation
selecttrunc(completion_time) as "Date",count(*) as "Count",((sum(blocks * block_size)) /1024 /1024) as "MB"from v$archived_loggroup by trunc(completio ...
分类:其他好文   时间:2021-04-02 13:31:01    阅读次数:0
49821条   上一页 1 ... 34 35 36 37 38 ... 4983 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!