SageNotebooks:我在使用数学时经常使用的Sage笔记本和Sage脚本 源码
不要与混淆,这是针对 贤者笔记本 我在进行数学时经常使用的Sage笔记本和Sage脚本。 内容: 矩阵 向量 功能,图解,操作 进阶用法 矩阵 基本矩阵示例: A=matrix([ 1,2,3 ]) B=matrix([ [1,2,3], [3,2,1] ]) show(A,B) # outputs (in LaTex): # 2 matrixes 1 1D, the other 2Dimensional. # 1: 1 2 3 # 2: 1 2 3 # 3 2 1 矩阵输入 ### takes a string "abc" and for each letter's ord() value, # assign it as elements in the matrix: matrix_in=lambda s:matrix(ord(i) for i in s)\ns=
文件列表
SageNotebooks-main.zip
(预估有个13文件)
SageNotebooks-main
Templates
Master_Template.md
614B
README.md
2KB
CheatSheet
General.py
368B
matrix.MD
248B
Projects
F1.sagews
3KB
f2.sagews
1KB
暂无评论