Displaying 6 results from an estimated 6 matches for "test_matrix".
2017 Jun 07
2
Initial implementation of ch.mapping 253/3
...panded from macro 'ABS16'
> #define ABS16(x) ((float)fabs(x))
> ^
>
> Also the test fails to compile with -std=c89:
>
> tests/test_opus_projection.c:57:1: error: C++ style comments are not
> allowed in ISO C90
> // static const MappingMatrix test_matrix = {
> ^
> tests/test_opus_projection.c:57:1: error: (this will be reported only
> once per input file)
> tests/test_opus_projection.c: In function 'main':
> tests/test_opus_projection.c:403:1: warning: control reaches end of
> non-void function [-Wreturn-type]
> }
>...
1999 Sep 01
0
Re: [S] Putting values into matrices: desired behaviour?
...ep 1999 08:34, Mette Langaas <Mette.Langaas at nr.no> said:
Mette> I'm running S-Plus 5.1 on UNIX (but the same behaviour I'm
Mette> describing is seen on S-Plus 3.4 R1 for UNIX).
Mette> I have first created a matrix with two rows and three columns
>> test_matrix(ncol=3,nrow=2)
>> test
Mette> [,1] [,2] [,3]
Mette> [1,] NA NA NA
Mette> [2,] NA NA NA
Mette> I then want to put values into parts of the matrix, but by mistake I
Mette> index outside the matrix (use rows 3-7 when there are only 2 row...
2017 May 30
2
Initial implementation of ch.mapping 253/3
Hello all,
Attached is the initial proposed implementation for ch.mapping 253/3, based
on the IETF proposal:
https://tools.ietf.org/html/draft-ietf-codec-ambisonics-03
A brief overview of the patch, as it is slightly lengthy:
After discussion with Jean-Marc, we determined that ch.253/3 will need the
demixing matrix as part of the encoder/decoder struct stack and thus will
require a new
2017 Jun 12
1
Initial implementation of ch.mapping 253/3
...((float)fabs(x))
>>> ^
>>>
>>> Also the test fails to compile with -std=c89:
>>>
>>> tests/test_opus_projection.c:57:1: error: C++ style comments are not
>>> allowed in ISO C90
>>> // static const MappingMatrix test_matrix = {
>>> ^
>>> tests/test_opus_projection.c:57:1: error: (this will be reported only
>>> once per input file)
>>> tests/test_opus_projection.c: In function 'main':
>>> tests/test_opus_projection.c:403:1: warning: control reaches end of
>>&g...
2017 Jun 07
0
Initial implementation of ch.mapping 253/3
...instead
./celt/arch.h:194:26: note: expanded from macro 'ABS16'
#define ABS16(x) ((float)fabs(x))
^
Also the test fails to compile with -std=c89:
tests/test_opus_projection.c:57:1: error: C++ style comments are not
allowed in ISO C90
// static const MappingMatrix test_matrix = {
^
tests/test_opus_projection.c:57:1: error: (this will be reported only
once per input file)
tests/test_opus_projection.c: In function 'main':
tests/test_opus_projection.c:403:1: warning: control reaches end of
non-void function [-Wreturn-type]
}
^
Running the test, an issue occurs...
2017 Jun 12
0
Initial implementation of ch.mapping 253/3
...;
>> #define ABS16(x) ((float)fabs(x))
>> ^
>>
>> Also the test fails to compile with -std=c89:
>>
>> tests/test_opus_projection.c:57:1: error: C++ style comments are not
>> allowed in ISO C90
>> // static const MappingMatrix test_matrix = {
>> ^
>> tests/test_opus_projection.c:57:1: error: (this will be reported only
>> once per input file)
>> tests/test_opus_projection.c: In function 'main':
>> tests/test_opus_projection.c:403:1: warning: control reaches end of
>> non-void function [-W...