是否有Blitz ++矩阵的文档?

时间:2012-06-20 06:30:38

标签: documentation matrix-multiplication blitz++

是否提供Blitz ++矩阵的文档?

我发现谷歌有http://www.oonumerics.org/blitz//manual/blitz01.html,但这似乎不包含文档。

我找到的唯一有用的例子是来自Rosettacode

#include <iostream>
#include <blitz/tinymat.h>

int main()
{
  using namespace blitz;

  TinyMatrix<double,3,3> A, B, C;

  A = 1, 2, 3,
      4, 5, 6,
      7, 8, 9;

  B = 1, 0, 0,
      0, 1, 0,
      0, 0, 1;

  C = product(A, B);

  std::cout << C << std::endl;
}

但是这个小例子并没有回答我的许多问题:

  • 像BigMatrix这样的东西存在吗?
  • 如果在编译时我不知道它们的大小,我怎样才能创建矩阵?
  • 这些矩阵支持哪些其他操作?

搜索tinymat.h显示了这个文件夹:

moose@pc07:/usr/include/blitz$ ls
applics.h      matbops.h     ops.h           tinyvec-et.h   vecglobs.h
array          matdiag.h     prettyprint.h   tinyvec.h      vecio.cc
array.h        matexpr.h     promote.h       tinyvecio.cc   veciter.h
array-impl.h   matgen.h      promote-old.h   tinyveciter.h  vecmax.cc
array-old.h    mathf2.h      rand-dunif.h    traversal.cc   vecmin.cc
bench.cc       mathfunc.h    rand-mt.h       traversal.h    vecnorm1.cc
benchext.cc    matltri.h     rand-normal.h   tuning.h       vecnorm.cc
benchext.h     matref.h      random.h        tvcross.h      vecpick.cc
bench.h        matrix.cc     randref.h       tvecglobs.h    vecpick.h
blitz.h        matrix.h      rand-tt800.h    update.h       vecpickio.cc
bzconfig.h     matsymm.h     rand-uniform.h  vecaccum.cc    vecpickiter.h
bzdebug.h      mattoep.h     range.h         vecall.cc      vecsum.cc
compiler.h     matuops.h     reduce.h        vecany.cc      vector.cc
config.h       matutri.h     shapecheck.h    vecbfn.cc      vector-et.h
etbase.h       memblock.cc   tau.h           vecbops.cc     vector.h
extremum.h     memblock.h    timer.h         veccount.cc    vecuops.cc
funcs.h        meta          tiny.h          vecdelta.cc    vecwhere.cc
gnu            minmax.h      tinymatexpr.h   vecdot.cc      vecwhere.h
indexexpr.h    mstruct.h     tinymat.h       vecexpr.h      wrap-climits.h
limits-hack.h  numinquire.h  tinymatio.cc    vecexprwrap.h  zero.cc
listinit.h     numtrait.h    tinyvec.cc      vecglobs.cc    zero.h

所以我猜Matrix适用于更大的矩阵。但是我如何将它们相乘呢?另外,这不是我了解图书馆的首选方式。

我安装了libblitz-doc - C++ template class library for scientific computing,因此文档应该在我的计算机上。但我在哪里搜索?

1 个答案:

答案 0 :(得分:3)

www.oonumerics.org网站目前似乎已被打破。但是,Blitz的完整文档包含在软件包中,可以从SourceForge上的this link下载。

在闪电战中,没有像BigMatrix这样的特殊课程。 Matrix只是一个二维数组,因此请使用Array模板。您不必在编译时知道数组/矩阵的大小。以下是文档中的一个小例子:

#include <blitz/array.h>

using namespace blitz;

int main()
{
    Array<int,2> A(6,6), B(3,3);

    // Set the upper left quadrant of A to 5 
    A(Range(0,2), Range(0,2)) = 5; 

    // Set the upper right quadrant of A to an identity matrix
    B = 1, 0, 0,
        0, 1, 0,
        0, 0, 1;
    A(Range(0,2), Range(3,5)) = B;

    // Set the fourth row to 1
    A(3, Range::all()) = 1;

    // Set the last two rows to 0
    A(Range(4, Range::toEnd), Range::all()) = 0;

    // Set the bottom right element to 8
    A(5,5) = 8;

    cout << "A = " << A << endl;

    return 0;
}

如果您使用的是基于Debian的分发,dpkg -L libblitz-doc将显示libblitz-doc包的内容,您可以看到文档的位置。在我的机器上,它们位于/usr/share/doc/libblitz-doc/