向量转化为矩阵犰狳

发布于 2024-11-24 16:59:27 字数 174 浏览 2 评论 0原文

我想做一些类似于 MATLAB 函数的事情:

mat = vec2mat(vec,matcol)
mat = vec2mat(vec,matcol,padding)
[mat,padded] = vec2mat(...) 

但是在犰狳 C++ 库中,你知道如何做吗?

I want to do something similar to MATLAB's function:

mat = vec2mat(vec,matcol)
mat = vec2mat(vec,matcol,padding)
[mat,padded] = vec2mat(...) 

but in armadillo c++ library, Do you know How?.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤独陪着我 2024-12-01 16:59:27

我认为通过 reshape 实现类似的行为应该不难:

mat vec2mat(vec V, size_t cols) {
    size_t rows = std::ceil(V.n_elems / double(cols));
    return V.reshape(cols, rows);// return the original vector as matrix
}

它并不完全相同(它总是用 0 填充),但我认为它非常相似。

It shouldn't be so hard to achieve similar behavior with reshape I think:

mat vec2mat(vec V, size_t cols) {
    size_t rows = std::ceil(V.n_elems / double(cols));
    return V.reshape(cols, rows);// return the original vector as matrix
}

It's not exactly the same (it padds always with 0), but it's quite similar I think.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文