摘要: json view guide https://blog.csdn.net/qq_44485559/article/details/117386700 download JSONVue-master.zip https://github.com/gildas-lormeau/JSONVue 阅读全文
posted @ 2022-08-22 08:11 boyang987 阅读(45) 评论(0) 推荐(0) 编辑
摘要: Windows Python3.6 安装 IPython(Jupyter) qtconsole https://blog.csdn.net/wohu1104/article/details/104475909 直接使用命令安装: pip install PyQt5 -i https://pypi.t 阅读全文
posted @ 2022-02-24 17:37 boyang987 阅读(101) 评论(0) 推荐(0) 编辑
摘要: https://www.runoob.com/try/runcode.php?filename=HelloWorld&type=python3 https://www.runoob.com/python3/python3-tutorial.html #!/usr/bin/python3 import 阅读全文
posted @ 2022-02-18 14:30 boyang987 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 酉矩阵 geogebra 阅读全文
posted @ 2022-02-18 13:48 boyang987 阅读(98) 评论(0) 推荐(0) 编辑
摘要: #python计算矩阵的秩、行列式、迹,特征值和特征向量、 import numpy as np a = np.array([[1,1,1], [1,1,10], [1,1,15]]) np.linalg.matrix_rank(a)#返回矩阵的秩 np.linalg.det(a) #返回矩阵的行列 阅读全文
posted @ 2022-02-18 10:04 boyang987 阅读(586) 评论(0) 推荐(0) 编辑
摘要: numpy.linalg.svd函数 转载自:python之SVD函数介绍 函数:np.linalg.svd(a,full_matrices=1,compute_uv=1) 参数: https://www.cnblogs.com/xym4869/p/11301727.html a是一个形如(M,N) 阅读全文
posted @ 2022-02-18 09:15 boyang987 阅读(298) 评论(0) 推荐(0) 编辑
摘要: -- URL https://www.cnblogs.com/whl2012/p/4811912.html -- MFC中CString 与 std::string 相互转化 CString实际是CStringT, 也就是模板类, 在UNICODE环境下,实际是CStringW, 在多字符集环境下, 阅读全文
posted @ 2022-02-14 16:34 boyang987 阅读(364) 评论(0) 推荐(0) 编辑
摘要: 相向而行 反转字符串 https://leetcode-cn.com/problems/reverse-string/solution/shuang-zhi-zhen-by-zhang-bo-b-7u4y/ class Solution { public: void reverseString(ve 阅读全文
posted @ 2021-11-04 11:39 boyang987 阅读(32) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/ayanmw/archive/2012/04/11/2442797.html @echo off echo echo Before changetime ,time is: date /t time /t echo echo Changing time 阅读全文
posted @ 2021-10-18 20:44 boyang987 阅读(346) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/yangruini_love/article/details/92840222 阅读全文
posted @ 2021-09-20 13:36 boyang987 阅读(34) 评论(0) 推荐(0) 编辑