代码 /** * This file is part of ORB-SLAM2. * * Copyright (C) 2014-2016 Raúl Mur-Artal <raulmur at unizar dot es> (University of Zaragoza) * For more inf ...
分类:
其他好文 时间:
2020-06-17 13:01:32
阅读次数:
45
问题回顾: 例7.22考虑图7.3所示的移动倒立摆。设M=2kg,m=0.1kg,l=0.5m。设计带降维观测器的状态反馈系统使得倒立摆在垂直位置。 建立模型 易得,该系统状态空间模型为: \[ \begin{bmatrix} \dot x_1 \\ \dot x_3 \\ \dot x_2 \\ ...
分类:
其他好文 时间:
2020-06-13 21:25:25
阅读次数:
86
代码1: 划一个简单的x及y轴,标出原点O及坐标为(100,100)的A点。 import turtle turtle.goto(0,0) turtle.dot(20,"yellow") turtle.write("O", font=('Arial', 10, 'normal')) turtle.f ...
分类:
编程语言 时间:
2020-06-09 09:27:00
阅读次数:
82
排序 (Ranking) 包点图 (Dot Plot) 包点图表传达了项目的排名顺序,并且由于它沿水平轴对齐,因此您可以更容易地看到点彼此之间的距离。 https://datawhalechina.github.io/pms50/#/chapter17/chapter17 导入所需要的库 impor ...
分类:
其他好文 时间:
2020-05-23 20:02:37
阅读次数:
40
前言 最近小程序项目需要一个 弹框 展示 轮播图 。项目用的 mpvue 框架,使用 colorUi 的轮播图时, <swiper class="card-swiper round-dot" indicator-dots="true" circular="true" autoplay="true" ...
分类:
其他好文 时间:
2020-05-18 18:13:12
阅读次数:
169
1.搭建环境 centos搭建.net3.1环境 2.创建web项目 mkdir project cd project dotnet new web 3.构建项目 #/app是构建目录 dotnet publish -c release -o /app --no-restore 4.运行项目 dot ...
分类:
Web程序 时间:
2020-05-16 18:59:59
阅读次数:
59
//按钮 .wx-swiper-dots.wx-swiper-dots-horizontal{ margin-bottom: 5rpx; float: left; text-align: center; } .wx-swiper-dot::before{ content: ''; flex-grow ...
分类:
微信 时间:
2020-05-15 11:53:31
阅读次数:
168
missing dot in first path element问题解决 技术就是一层窗户纸,能捅破便是拨开云天见月明,捅不破就是一叶障目,不见泰山呀! 今天碰到了个问题,卡了我半天。 malformed module path "XXXX": missing dot in first path ...
分类:
其他好文 时间:
2020-05-04 00:48:17
阅读次数:
565
DPI(Dot Per Inch) 表示打印分辨率,指每英寸长度上的点数。DPI 又可细分为水平分辨率和垂直分辨率。 设备分辨率(DeviceResolution)又称输出分辨率,指的是各类输出设备每英寸上可产生的点数。分辨率通过 DPI 来衡量。 像素=英寸*分辨率。 比如一张2英寸乘以3英寸的图 ...
分类:
其他好文 时间:
2020-05-03 18:26:41
阅读次数:
61
原文:https://www.cnblogs.com/schut/p/8439225.html 1、什么是re模块? 正则表达式就是字符串的匹配规则,在多数编程语言里都有相应的支持,python里对应的模块是re。 2、常用匹配规则: '.' 默认匹配除\n之外的任意一个字符,若指定flag DOT ...
分类:
其他好文 时间:
2020-05-01 17:08:33
阅读次数:
85