接着之前写的V-rep学习笔记:机器人模型创建2—添加关节继续机器人创建流程。如果已经添加好关节,那么就可以进入流程的最后一步:搭建层次结构模型和模型定义(build the model hierarchy and finish the model definition)。但是想要进行动力学仿真(碰 ...
分类:
其他好文 时间:
2017-04-18 15:37:09
阅读次数:
1109
我自己写的divide&conquer /** * Definition of TreeNode: * public class TreeNode { * public int val; * public TreeNode left, right; * public TreeNode(int val ...
分类:
其他好文 时间:
2017-04-16 21:17:55
阅读次数:
154
一些大神的总结 http://blog.sina.com.cn/s/blog_eb52001d0102v1si.html 递归的两种,写在一个方法里或者两个 /** * Definition of TreeNode: * public class TreeNode { * public int va ...
分类:
其他好文 时间:
2017-04-14 23:17:15
阅读次数:
274
SQL全称:结构化查询语言(Structured Query Language) 包含4种语言 1、数据定义语言 DDL Data Definition Language 2、数据操作语言 DML Data Manipulation Language 3、数据查询语言 DQL Data Query ...
分类:
数据库 时间:
2017-04-14 22:55:44
阅读次数:
274
Chain Rule and Bayesian Rule From the definition of the conditional distribution, we see that $$P(\alpha_1 \cap ... \cap \alpha_k)=P(\alpha_1)P(\alpha ...
分类:
其他好文 时间:
2017-04-13 00:22:42
阅读次数:
223
在配置文件中有 include=/etc/php-fpm.d/*.conf , 表示池定义 pool definition 在php-fpm.d目录下 建立 /etc/nginx/conf.d/example.conf ...
分类:
Web程序 时间:
2017-04-12 13:26:54
阅读次数:
233
SQL语句的种类 ● 数据定义语句(DDL:Data Definition Language) ● 包括create和drop等操作 ● 在数据库中创建新表或删除表(create table或 drop table) ● 数据操作语句(DML:Data Manipulation Language) ...
分类:
移动开发 时间:
2017-04-12 03:24:51
阅读次数:
257
#转自 http://www.2cto.com/os/201507/418532.html #win10+python3.5.2 #保护视力 .idlerc 目录下新建名为 config-highlight.cfg 文件,并加入如下内容 [tango] definition-foreground = ...
分类:
编程语言 时间:
2017-04-11 10:12:40
阅读次数:
320
题目: Description Did you know that if you draw a circle that fills the screen on your 1080p high definition display, almost a million pixels are lit? T ...
分类:
其他好文 时间:
2017-04-11 01:22:26
阅读次数:
227
1.SQL 语句主要可以划分为以下 4 个类别: 1.1 DDL(Data Definition Languages)语句:数据定义语言,这些语句定义了不同的数据段、数据库、表、列、索引等 数据库对象的定义。常用的语句关键字主要包括 create、drop、alter等。 1.2 DML(Data ...
分类:
数据库 时间:
2017-04-09 22:42:48
阅读次数:
259