代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/237003/13982873
cpp convolve.cpp
#include
#include
using namespace blitz;
int main()
{
Array B(Range(-2,+2));
Array C(Range(10,15));
B = 1, 0, 2, 5, 3;
C =
www.eeworm.com/read/237003/13983567
cpp acou3db4.cpp
#include
#include
BZ_USING_NAMESPACE(blitz)
void setupInitialConditions(Array& P1, Array& P2,
Array& P3, Array& c, in
www.eeworm.com/read/237003/13983648
texi strideslice.texi
#include
using namespace blitz;
int main()
@{
Array A(8,8);
A = 0;
Array B = A(Range(1,7,3), Range(1,5,2));
B = 1;
cout
www.eeworm.com/read/237003/13983651
cpp outer.cpp
#include
using namespace blitz;
int main()
{
Array x(4), y(4);
Array A(4,4);
x = 1, 2, 3, 4;
y = 1, 0, 0, 1;
firstIndex i;
secondIndex j;
www.eeworm.com/read/237003/13983655
texi outer.texi
#include
using namespace blitz;
int main()
@{
Array x(4), y(4);
Array A(4,4);
x = 1, 2, 3, 4;
y = 1, 0, 0, 1;
firstIndex i;
secondIndex j;
www.eeworm.com/read/237003/13983665
cpp simple.cpp
#include
using namespace blitz;
int main()
{
Array A(3,3), B(3,3), C(3,3);
A = 1, 0, 0,
2, 2, 2,
1, 0, 0;
B = 0, 0, 7,
0, 8, 0,
www.eeworm.com/read/237003/13983667
texi dump.texi
#include
using namespace blitz;
int main()
@{
Array A(3,7,8,2,FortranArray());
A.dumpStructureInformation(cerr);
return 0;
@}
www.eeworm.com/read/237003/13983674
texi simple.texi
#include
using namespace blitz;
int main()
@{
Array A(3,3), B(3,3), C(3,3);
A = 1, 0, 0,
2, 2, 2,
1, 0, 0;
B = 0, 0, 7,
0, 8, 0,
www.eeworm.com/read/237003/13983680
cpp xor.cpp
#include
using namespace blitz;
int main()
{
Array A(4), B(4), C(4);
A = 0, 1, 2, 3;
B = 0, 1, 0, 3;
C = A ^ B;
cout
www.eeworm.com/read/237003/13983690
cpp dump.cpp
#include
using namespace blitz;
int main()
{
Array A(3,7,8,2,FortranArray());
A.dumpStructureInformation(cerr);
return 0;
}