maple软件使用学习 如何表示矩阵 矩阵 RotX := theta -> Matrix([[1, 0, 0, 0], [0, C(theta), -S(theta), 0], [0, S(theta), C(theta), 0], [0, 0, 0, 1]]); 矩阵的逆 with(Linear ...
分类:
其他好文 时间:
2020-07-07 17:24:41
阅读次数:
127
Maple_CM_ordUP+, Based on Maple_LCM --Copyright (c) 2018, Chu-Min LI, Mao Luo, Fan Xiao: implementing a clause minimisation approach and selects the c ...
分类:
其他好文 时间:
2020-06-29 00:42:38
阅读次数:
107
1 # -*- coding: utf-8 -*- 2 # __author__ = "maple" 3 4 5 from base64 import b64decode 6 from lxml import etree 7 import requests 8 import json 9 impor ...
分类:
其他好文 时间:
2020-06-26 16:19:44
阅读次数:
165
a= [] for i in range(10): if i %2 == 0: a.append(i) > [ i for i in range(10) if i % 2 ==0] 所以列表推导式的要素有3个 1)for 循环 2)被添加的元素 3)条件 限制: 1) 条件:只有一个出口,没有els ...
分类:
其他好文 时间:
2020-06-05 22:50:04
阅读次数:
89
示例: # -*- coding: utf-8 -*- # __author__ = "maple" # import time # from selenium import webdriver # driver = webdriver.Chrome() # driver.implicitly_wa ...
分类:
其他好文 时间:
2019-11-09 13:33:03
阅读次数:
87
1.查找文件 find / -name filename.txt 根据名称查找/目录下的filename.txt文件。 find . -name "*.xml" 递归查找所有的xml文件 find . -name "*.xml" |xargs grep "hello world" 递归查找所有文件内 ...
分类:
系统相关 时间:
2019-10-25 21:55:03
阅读次数:
83
1.我下载的是maple18中文版,微信公众号:电脑管家下载,一些常用的软件都可以去那里下载。 2.maple有帮助文档,查找了很久,看到的都是12或者14版本的有中文的,18版本有英文帮助文档。 3.我在网上找到一份关于基础知识的PDF文档,来自于微盘,免费下载,https://vdisk.wei ...
分类:
其他好文 时间:
2019-10-23 22:18:55
阅读次数:
146
#!/usr/bin/python# -*- coding:utf-8 -*-# @Time :2019/10/7 10:55# @Author :maple# @Emall :1075495040@qq.com# @File :密码字典4.pyimport itertools as itsword ...
分类:
编程语言 时间:
2019-10-07 11:09:27
阅读次数:
387
结论语法思想 三元表达式条件为真的结果, if +判断的条件, else+条件为假时的结果 列表推导式就是结果放在前面,循环跟着想循环的可迭代的东西(iterable) 与列表不同的是它的标志符号'{}'且仍然返回字典的形式 记得还有筛选,多重嵌套 用的很少,,,, 三元表达式 格式为:条件为真时的 ...
分类:
其他好文 时间:
2019-10-03 01:03:52
阅读次数:
102
我们给予ubuntu的镜像然后拷贝python的requirement.txt文件进去,再根据这个文件安装对应的python库 拷贝文件到docker容器。首先查找对应的容器ID。然后执行命令 docker cp 文件源路径 文件目标路径 root@zhf-maple:/home/zhf/桌面# d ...
分类:
其他好文 时间:
2019-09-22 21:24:38
阅读次数:
124