了解传递给函数的参数是向量还是矩阵
我正在 Sage 中编写一个函数,它应该以不同的方式处理向量和矩阵。
我无法使用 isinstance 函数,因为向量或矩阵的类型取决于元素的类型:
sage: type(matrix([[1]]))
<type 'sage.matrix.matrix_integer_dense.Matrix_integer_dense'>
sage: type(matrix([[i]]))
<type 'sage.matrix.matrix_symbolic_dense.Matrix_symbolic_dense'>
区分向量和矩阵的最佳方法是什么?
I'm writing a function in Sage that should work in different way for vectors and matrices.
I can not use isinstance
function because type of vector or matrix depends on the type of the elements:
sage: type(matrix([[1]]))
<type 'sage.matrix.matrix_integer_dense.Matrix_integer_dense'>
sage: type(matrix([[i]]))
<type 'sage.matrix.matrix_symbolic_dense.Matrix_symbolic_dense'>
What is the best way to distinguish vectors and matrices?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该解决方案是在尝试在 Sage 源代码中查找定义
matrix.dim
时意外找到的。The solution was accidentally found while trying to find definition
matrix.dim
in the Sage source.