Despription Triangulation of surfaces has applications in the Finite Element Method of solid mechanics. The objective is to estimate the stress and st ...
分类:
其他好文 时间:
2020-01-04 22:04:54
阅读次数:
66
LR: Direct Sparse Mapping Abstract Photometric bundle adjustment (PBA). 目前的PBA没法处理 reobservation . 我们提出DSM(direct sparse mapping). 1. Introduction 边缘化 ...
分类:
其他好文 时间:
2020-01-02 22:30:17
阅读次数:
118
编程语言有很多种流派和思想,有一些编程语言同时支持多种编程范式。 静态类型编程范式 采用静态类型编程范式的编程语言,其变量需要明确指定类型。代表语言有C、C++、Pascal、Objective-C、Java、C#、VB、.NET、Swif和Golang等。 这种范式认为,程序员肯定知道变量的类型, ...
分类:
其他好文 时间:
2020-01-01 13:41:41
阅读次数:
89
一. 简介 Redis 是一个开源(BSD许可)的,内存中的数据结构存储系统,它可以用作数据库、缓存和消息中间件。拥有丰富的支持主流语言的客户端,C、C++、Python、Erlang、R、C#、Java、PHP、Objective-C、Perl、Ruby、Scala、Go、JavaScript。 ...
分类:
其他好文 时间:
2019-12-30 14:44:53
阅读次数:
94
1.1: // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file ...
分类:
其他好文 时间:
2019-12-28 23:11:10
阅读次数:
148
Part1 结果正确 区别: 二进制文件需要特别的解码器,文本文件可以读写。 #include <stdio.h> #include <stdlib.h> #define N 10 typedef struct student { int num; char name[20]; int score; ...
分类:
其他好文 时间:
2019-12-28 19:28:28
阅读次数:
89
server:192.168.109.137 client:192.168.109.138 安装: 1.yum install -y vsftpd lftp 2.创建用户 useradd ftpuser -s /sbin/nologin 3.创建虚拟用户及其存放路径(第一行账号,第二行密码) vim ...
分类:
其他好文 时间:
2019-12-24 19:04:50
阅读次数:
119
在mac本上安装x-code开发工具第一步x-code提供了五种模板我们一般挑选最简单的singleview模板只有一个空白页面的点击下一步第二步填写项目名称(一般采用驼峰法命名)公司名称公司ID值(一般采用域名倒过来写)然后会自动生成一个bundle值这是结合项目名称和公司域名生成的这样可以保证上线的App唯一性然后选择开发语言(objective-c/swift)和设备数据库和单元测试选择默认
分类:
移动开发 时间:
2019-12-23 23:55:26
阅读次数:
189
lua os库提供了简单的跟操作系统有关的功能 1. os.clock() 返回程序所运行使用的时间 2. os.date ([format [, time]]) 用来格式化时间戳为可读时间,time为可选时间戳,省略时取当下 其中" t": 将返一个带year(4位),month(1 12), d ...
分类:
其他好文 时间:
2019-12-23 11:42:05
阅读次数:
144
参考:https://www.jianshu.com/p/5f033fdd4ddb 一般情况下 if (@available(iOS 11.0, *)) { self.estimatedRowHeight = 0; self.estimatedSectionFooterHeight = 0; sel ...
分类:
其他好文 时间:
2019-12-21 13:31:12
阅读次数:
178