如何连接矩阵中的多行
在Java中,我想将一个数组(a[],固定长度)连接到相同长度的数组,以创建一个矩阵M[2][a的长度]。这样我想随后将更多这些数组粘贴到矩阵上。 (相当于Matlab vertcat函数..C=[A;B]) 这可能吗? 谢谢
In Java I would like to concatenate an array (a[], fixed length) to an array of the same length, to create a matrix M[2][length of a]. This way I would like to subsequently paste more of those arrays onto the matrix. (Comparable to the Matlab vertcat function..C=[A;B])
Is this possible?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的。这是一个例子:
上面的打印结果是:
不过,我们可以做得更好。如果您使用的是 Java 5 或更高版本,请使用:
然后您可以编写:
它适用于任意数量的参数。
编辑
上述方法将原始数组填充到另一个数组中,这意味着对结果的任何修改都会影响原始数组,这可能是不可取的。使用以下命令复制值:
如果您希望 vertcat 返回副本而不是原始值,则可以将其重新定义为:
Yes, it is possible. Here is an example:
The above prints out:
We can do even better than that, though. If you are using Java 5 or higher, use:
Then you can write:
And it will work for any number of arguments.
Edit
The above method stuffs the original arrays into another array, which means that any modification to the result will affect the original arrays, which may be undesireable. Use the following to copy the values:
If you want
vertcat
to return a copy rather than the original, you can redefine it as:据我所知,Java没有内置对矩阵和矩阵相关运算的支持。我要么使用二维数组,编写自己的矩阵包装类(在更简单的情况下),要么寻找一个好的矩阵库(例如 http://jmathtools.berlios.de/)。
As far as I know, Java has no built-in support for matrices and matrix-related operations. I would either use a 2D array, write my own Matrix wrapper class (in simpler cases) or hunt down a good Matrix library (e.g. http://jmathtools.berlios.de/).