diff --git a/main/dsppp_building.html b/main/dsppp_building.html index 75fb5bb66..f2ab34947 100644 --- a/main/dsppp_building.html +++ b/main/dsppp_building.html @@ -132,14 +132,14 @@

-

+

To build

First time:

cbuild -O cprj test.csolution.yml --toolchain AC6 -c example.Release+VHT-Corstone-300 -p -r --update-rte

Other times:

cbuild -O cprj test.csolution.yml --toolchain AC6 -c example.Release+VHT-Corstone-300

If you want to select another test, edit the file example.cproject.yml and uncomment the test.

-

+

To run

If the tools have been installed with vcpkg:

FVP_Corstone_SSE-300_Ethos-U55.exe -f fvp_configs/VHT-Corstone-300.txt -a cpu0=cprj\out\example\VHT-Corstone-300\Release\example.axf
diff --git a/main/dsppp_intro.html b/main/dsppp_intro.html index b78432b6f..180abea14 100644 --- a/main/dsppp_intro.html +++ b/main/dsppp_intro.html @@ -132,7 +132,7 @@

-

+

Dot product example

If you want to compute the dot product:

@@ -157,7 +157,7 @@

With this new C++ template library, you can write:

r = dot(scale*(a+b),c*d);

The code generated by this line computes the dot product in one pass with all the operators (+, *) included in the loop. There is no more any temporary buffers.

-

+

Vector operations

Let's look at another example:

diff --git a/main/dsppp_main.js b/main/dsppp_main.js index 11764d987..c1c7c3eec 100644 --- a/main/dsppp_main.js +++ b/main/dsppp_main.js @@ -2,47 +2,47 @@ var dsppp_main = [ [ "Introduction", "dsppp_intro.html", null ], [ "What you need to know about C++ templates", "dsppp_template.html", [ - [ "What is a template useful for ?", "dsppp_template.html#autotoc_md7", null ], - [ "Templates for datatypes", "dsppp_template.html#autotoc_md8", null ], - [ "Implicit parameters", "dsppp_template.html#autotoc_md9", null ], - [ "How to use templates ?", "dsppp_template.html#autotoc_md10", null ], - [ "Example", "dsppp_template.html#autotoc_md11", null ] + [ "What is a template useful for ?", "dsppp_template.html#autotoc_md8", null ], + [ "Templates for datatypes", "dsppp_template.html#autotoc_md9", null ], + [ "Implicit parameters", "dsppp_template.html#autotoc_md10", null ], + [ "How to use templates ?", "dsppp_template.html#autotoc_md11", null ], + [ "Example", "dsppp_template.html#autotoc_md12", null ] ] ], [ "Vector operation example", "dsppp_vector_example.html", [ - [ "Include the headers", "dsppp_vector_example.html#autotoc_md12", null ], - [ "Creation of the vectors", "dsppp_vector_example.html#autotoc_md13", null ], - [ "Initialization of the vectors", "dsppp_vector_example.html#autotoc_md14", null ], - [ "Computation", "dsppp_vector_example.html#autotoc_md15", null ], - [ "Displaying the result", "dsppp_vector_example.html#autotoc_md16", null ] + [ "Include the headers", "dsppp_vector_example.html#autotoc_md13", null ], + [ "Creation of the vectors", "dsppp_vector_example.html#autotoc_md14", null ], + [ "Initialization of the vectors", "dsppp_vector_example.html#autotoc_md15", null ], + [ "Computation", "dsppp_vector_example.html#autotoc_md16", null ], + [ "Displaying the result", "dsppp_vector_example.html#autotoc_md17", null ] ] ], [ "Memory allocation", "dsppp_memory_allocator.html", null ], [ "Static / dynamic", "dsppp_memory_static_dynamic.html", [ - [ "Static objects", "dsppp_memory_static_dynamic.html#autotoc_md17", null ], - [ "Dynamic objects", "dsppp_memory_static_dynamic.html#autotoc_md18", null ] + [ "Static objects", "dsppp_memory_static_dynamic.html#autotoc_md18", null ], + [ "Dynamic objects", "dsppp_memory_static_dynamic.html#autotoc_md19", null ] ] ], [ "Code size", "dsppp_code_size.html", null ], [ "Fusion", "dsppp_fusion.html", null ], [ "Vector", "dsppp_vector.html", [ - [ "Q15 example", "dsppp_vector.html#autotoc_md19", null ], - [ "VectorView", "dsppp_vector.html#autotoc_md20", null ] + [ "Q15 example", "dsppp_vector.html#autotoc_md20", null ], + [ "VectorView", "dsppp_vector.html#autotoc_md21", null ] ] ], [ "Matrix", "dsppp_matrix.html", [ - [ "VectorView", "dsppp_matrix.html#autotoc_md21", [ - [ "Row vector", "dsppp_matrix.html#autotoc_md22", null ], - [ "Column vector", "dsppp_matrix.html#autotoc_md23", null ] + [ "VectorView", "dsppp_matrix.html#autotoc_md22", [ + [ "Row vector", "dsppp_matrix.html#autotoc_md23", null ], + [ "Column vector", "dsppp_matrix.html#autotoc_md24", null ] ] ], - [ "MatrixView", "dsppp_matrix.html#autotoc_md24", null ], - [ "Matrix operations", "dsppp_matrix.html#autotoc_md25", [ - [ "dot", "dsppp_matrix.html#autotoc_md26", null ], - [ "diagonal", "dsppp_matrix.html#autotoc_md27", null ], - [ "identity", "dsppp_matrix.html#autotoc_md28", null ], - [ "transpose", "dsppp_matrix.html#autotoc_md29", null ], - [ "outer product", "dsppp_matrix.html#autotoc_md30", null ] + [ "MatrixView", "dsppp_matrix.html#autotoc_md25", null ], + [ "Matrix operations", "dsppp_matrix.html#autotoc_md26", [ + [ "dot", "dsppp_matrix.html#autotoc_md27", null ], + [ "diagonal", "dsppp_matrix.html#autotoc_md28", null ], + [ "identity", "dsppp_matrix.html#autotoc_md29", null ], + [ "transpose", "dsppp_matrix.html#autotoc_md30", null ], + [ "outer product", "dsppp_matrix.html#autotoc_md31", null ] ] ] ] ], [ "Building and running examples", "dsppp_building.html", [ - [ "To build", "dsppp_building.html#autotoc_md31", null ], - [ "To run", "dsppp_building.html#autotoc_md32", null ] + [ "To build", "dsppp_building.html#autotoc_md32", null ], + [ "To run", "dsppp_building.html#autotoc_md33", null ] ] ], [ "Guidelines", "dsppp_guidelines.html", null ] ]; \ No newline at end of file diff --git a/main/dsppp_matrix.html b/main/dsppp_matrix.html index 0c3059a38..20d9b71dc 100644 --- a/main/dsppp_matrix.html +++ b/main/dsppp_matrix.html @@ -154,10 +154,10 @@

Matrix<float32_t,ROWS,COLS> result = a * a + b;

The operators + and * are merged into the loop. * is the element-wise multiply. For the vector / matrix products you should use the operator dot.

Note that fusion of operators will not work with dot(Matrix, Matrix). It is only supported with vectors : dot(Vector,Vector) or dot(Matrix,Vector).

-

+

VectorView

We can create virtual vectors which are view of some slices of the matrix.

-

+

Row vector

To set the second row to 0.0f, you can do:

result.row(1) = 0.0f;
@@ -171,12 +171,12 @@

VectorView<P,S> row(const index_t i,const index_t start=0,const index_t stop=C)

stop is the index of the first element after the end of the view.

i is the row index

-

+

Column vector

There is a similar API for columns.

Let's set the odd elements of columns 3 to 5.0f:

result.col<2>(2,1) = 5.0f;
-

+

MatrixView

It is also possible to create a virtual matrix : a view onto a subset of the matrix.

Let's add the bottom right corner of the matrix to itself:

@@ -189,7 +189,7 @@

You specify the row start and row end, then column start and column end.

Note that the end is the first index after the end of your rows or columns.

No stride is supported for matrix view in this version of the library.

-

+

Matrix operations

In addition to the vector operations +,- and *, matrixes are supporting more operations:

-

+

dot

result = dot(a,b);

The compiler may use the move semantic to copy the temporary result of the dot function to result.

In this case, no copy would occur and result after the assignment would be a vector allocated by dot so using the TMP_ALLOC .

-

+

diagonal

result = Matrix<float32_t,ROWS,COLS>::diagonal(c);
-

+

identity

result = Matrix<float32_t,ROWS,COLS>::identity();
-

+

transpose

result = a.transpose();

or

transposeTo(result,a);
-

+

outer product

result = outer(c,c);
diff --git a/main/dsppp_memory_static_dynamic.html b/main/dsppp_memory_static_dynamic.html index 07ec22b52..5e74e8599 100644 --- a/main/dsppp_memory_static_dynamic.html +++ b/main/dsppp_memory_static_dynamic.html @@ -140,13 +140,13 @@

This naming "static" / "dynamic" is referring to the dimension. With "dynamic" vectors the same code can, at runtime, create vectors of different length based on a runtime length.

With "static" vectors : the length is fixed at build time and will never change at runtime.

Note that the library also have "static" / "dynamic" matrixes. So, we are going to use the name "object" to cover both cases in the below explanations.

-

+

Static objects

The advantage of static objects is that the dimension is known at build time. The compiler can thus generate an algorithm that is specialized for those dimensions and thus more efficient.

With static objects it is also possible to use different memory allocator with better performances and determinism.

But, with static objects, objects of different dimension are considered as different types. The compiler will generate different implementation so it will have an impact on the code size.

If you need lots of objects of different dimensions, or if the dimensions are not known at build time, then you need to use dynamic object

-

+

Dynamic objects

With dynamic objects, the dimension is know at runtime. So object of different dimensions have the same datatype and the compiler is generating only one implementation for all those objects. It cannot generate specialized implementations based on the dimension. It is better for code size, but the implementations will be less efficient.

Also when dimension is not know at build time, some instruction selection made by the C++ library at build time is no more possible. It has an effect on performance since at runtime one must decides what's possible or not. It is mostly impacting matrixes where stride information is needed.

diff --git a/main/dsppp_template.html b/main/dsppp_template.html index e4d712a9e..2b1875980 100644 --- a/main/dsppp_template.html +++ b/main/dsppp_template.html @@ -132,7 +132,7 @@

-

+

What is a template useful for ?

In CMSIS-DSP, you have functions like:

diff --git a/main/dsppp_vector.html b/main/dsppp_vector.html index e3565cbbe..861ead1e6 100644 --- a/main/dsppp_vector.html +++ b/main/dsppp_vector.html @@ -143,7 +143,7 @@
  • Allocator is the memory allocator. By default it is TMP_ALLOC that you can redefine since it is a macro
  • Vector_Base<P> is providing the storage. A vector owns its storage buffer.
  • -

    +

    Q15 example

    Example with Q15 is very similar:

    The vectors are defined:

    @@ -160,7 +160,7 @@

    Vector<Q15,NB> dQ15 = aQ15 + bQ15 * cQ15;

    The result is displayed:

    std::cout << "Result = " << dQ15 ;
    -

    +

    VectorView

    A vector view is a virtual vector : a view of a vector.

    One can define a VectorView with:

    diff --git a/main/dsppp_vector_example.html b/main/dsppp_vector_example.html index b141d6706..7e6528d22 100644 --- a/main/dsppp_vector_example.html +++ b/main/dsppp_vector_example.html @@ -145,7 +145,7 @@
  • initialize the vectors
  • make the computation.
  • -

    +

    Include the headers

    The headers are not yet part of the CMSIS-DSP packs since they are experimental. You can get them from the CMSIS-DSP github

    #include <dsppp/memory_pool>
    @@ -154,7 +154,7 @@

    using namespace arm_cmsis_dsp;

    If fixed point datatypes are required, #include <dsppp/fixed_point> should be used before <dsppp/matrix>

    Fixed point requires the use of CMSIS-DSP.

    -

    +

    Creation of the vectors

    To create a vector a you would write:

    constexpr int NB = 32;
    @@ -169,14 +169,14 @@

    If you don't know the dimension at build time, you can use a different type of vector with:

    For the trade-off between vector with build time dimension or runtime dimension please see the section Static / dynamic .

    -

    +

    Initialization of the vectors

    You can index the vectors as normal C arrays.

    for(int i = 0;i< NB;i++)
    {
    a[i] = b[i] = c[i] = i;
    }
    -

    +

    Computation

    The computation can be written normally as :

    Vector<float32_t,NB> d = a + b * c;
    @@ -186,7 +186,7 @@

    The operators +, * are computed in one pass with one loop : we have loop fusion and instead of having a loop per operator we have a loop for the whole computation.

    To understand fusion and how to extend it with new operators, see section Fusion .

    For an overview of vector operators, see section Vector . For an overview of matrix operators, see section Matrix .

    -

    +

    Displaying the result

    The vectors can be displayed on stdout for debug purpose.

    std::cout << "Result = " << d ;
    diff --git a/main/footer.js b/main/footer.js index ff75ff7ef..7d3c8469a 100644 --- a/main/footer.js +++ b/main/footer.js @@ -1,7 +1,7 @@ function writeHeader() { - document.write('Version 1.15.1-dev65'); + document.write('Version 1.15.1-dev67'); }; function writeFooter() { - document.write('Generated on Tue Jul 16 2024 08:56:40 for CMSIS-DSP 1.15.1-dev65+gfc6da81. Copyright © 2024 Arm Limited (or its affiliates). All rights reserved.'); + document.write('Generated on Wed Jul 17 2024 06:55:26 for CMSIS-DSP 1.15.1-dev67+gf6a27a0. Copyright © 2024 Arm Limited (or its affiliates). All rights reserved.'); }; diff --git a/main/group__groupSupport.html b/main/group__groupSupport.html index a7ee7de8f..ea331fc6c 100644 --- a/main/group__groupSupport.html +++ b/main/group__groupSupport.html @@ -158,7 +158,7 @@    Convert 8-bit fixed point value   - Weighted SumWeighted Average  

    Description

    diff --git a/main/group__groupSupport.js b/main/group__groupSupport.js index 409bdd0fb..4998888d1 100644 --- a/main/group__groupSupport.js +++ b/main/group__groupSupport.js @@ -11,5 +11,5 @@ var group__groupSupport = [ "Convert 16-bit fixed point value", "group__q15__to__x.html", "group__q15__to__x" ], [ "Convert 32-bit fixed point value", "group__q31__to__x.html", "group__q31__to__x" ], [ "Convert 8-bit fixed point value", "group__q7__to__x.html", "group__q7__to__x" ], - [ "Weighted Sum", "group__weightedsum.html", "group__weightedsum" ] + [ "Weighted Average", "group__weightedaverage.html", "group__weightedaverage" ] ]; \ No newline at end of file diff --git a/main/group__weightedsum.html b/main/group__weightedaverage.html similarity index 80% rename from main/group__weightedsum.html rename to main/group__weightedaverage.html index caafe4111..91f114dc5 100644 --- a/main/group__weightedsum.html +++ b/main/group__weightedaverage.html @@ -5,7 +5,7 @@ -CMSIS-DSP: Weighted Sum +CMSIS-DSP: Weighted Average @@ -102,7 +102,7 @@
    @@ -130,30 +130,30 @@
    -
    Weighted Sum
    +
    Weighted Average
    - - - - - - + + + + + +

    Functions

    float16_t arm_weighted_sum_f16 (const float16_t *in, const float16_t *weigths, uint32_t blockSize)
     Weighted sum.
     
    float32_t arm_weighted_sum_f32 (const float32_t *in, const float32_t *weigths, uint32_t blockSize)
     Weighted sum.
     
    float16_t arm_weighted_average_f16 (const float16_t *in, const float16_t *weigths, uint32_t blockSize)
     Weighted average.
     
    float32_t arm_weighted_average_f32 (const float32_t *in, const float32_t *weigths, uint32_t blockSize)
     Weighted average.
     

    Description

    -

    Weighted sum of values

    +

    Weighted average of values

    Function Documentation

    - -

    ◆ arm_weighted_sum_f16()

    + +

    ◆ arm_weighted_average_f16()

    - + @@ -178,27 +178,27 @@

    -

    Weighted sum.

    +

    Weighted average.

    Parameters

    float16_t arm_weighted_sum_f16 float16_t arm_weighted_average_f16 ( const float16_t *  in,
    - +
    [in]*inArray of input values.
    [in]*weigthsWeights
    [in]blockSizeNumber of samples in the input array.
    [in]blockSizeNumber of samples in the input array.
    -
    Returns
    Weighted sum
    +
    Returns
    Weighted average
    - -

    ◆ arm_weighted_sum_f32()

    + +

    ◆ arm_weighted_average_f32()

    - + @@ -223,7 +223,7 @@

    -

    Weighted sum.

    +

    Weighted average.

    Parameters

    float32_t arm_weighted_sum_f32 float32_t arm_weighted_average_f32 ( const float32_t in,
    @@ -232,7 +232,7 @@

    Returns
    Weighted sum
    +
    Returns
    Weighted average
    diff --git a/main/group__weightedaverage.js b/main/group__weightedaverage.js new file mode 100644 index 000000000..bf26a378c --- /dev/null +++ b/main/group__weightedaverage.js @@ -0,0 +1,5 @@ +var group__weightedaverage = +[ + [ "arm_weighted_average_f16", "group__weightedaverage.html#ga5109e2a8b99632973843d86bd7ad851b", null ], + [ "arm_weighted_average_f32", "group__weightedaverage.html#gacb3c3c0baca35abeb83b8cb3554046ab", null ] +]; \ No newline at end of file diff --git a/main/group__weightedsum.js b/main/group__weightedsum.js deleted file mode 100644 index f254e4a08..000000000 --- a/main/group__weightedsum.js +++ /dev/null @@ -1,5 +0,0 @@ -var group__weightedsum = -[ - [ "arm_weighted_sum_f16", "group__weightedsum.html#ga06e10e847786d8d96c5459fb36d5c752", null ], - [ "arm_weighted_sum_f32", "group__weightedsum.html#gaffef5e0e3e1d0289e419c23853e20850", null ] -]; \ No newline at end of file diff --git a/main/index.html b/main/index.html index df85d8a6f..0bbbfb251 100644 --- a/main/index.html +++ b/main/index.html @@ -169,6 +169,13 @@

    Using the CMSIS-DSP Library

    The library is released in source form. It is strongly advised to compile the library using -Ofast optimization to have the best performances.

    +

    Following options should be avoided:

    +
      +
    • -fno-builtin
    • +
    • -ffreestanding because it enables previous options
    • +
    +

    The library is doing some type punning to process word 32 from memory as a pair of q15 or a quadruple of q7. Those type manipulations are done through memcpy functions. Most compilers should be able to optimize out those function calls when the length to copy is small (4 bytes).

    +

    This optimization will not occur when -fno-builtin is used and it will have a very bad impact on the performances.

    The library functions are declared in the public file Include/arm_math.h. Simply include this file to use the CMSIS-DSP library. If you don't want to include everything, you can also rely on individual header files from the Include/dsp/ folder and include only those that are needed in the project.

    Examples

    @@ -196,10 +203,8 @@

    - - - +
    [in]*inArray of input values.
    📂 Source Source files
    📂 dsppp Experimental C++ teamplate extension
    📄 ARM.CMSIS-DSP.pdsc CMSIS-Pack description file
    📄 LICENSE License Agreement (Apache 2.0)

    See CMSIS Documentation for an overview of CMSIS software components, tools and specifications.

    @@ -270,10 +275,15 @@

    They have been removed.

    Constant tables can use a lot of read only memory but the linker can remove the unused functions and constant tables if it can deduce that those tables or functions are not used.

    For this you need to use the right initialization functions in the library and the right options for the linker (they are compiler dependent).

    -

    For all transforms functions (CFFT, RFFT ...) instead of using a generic initialization function that works for all lengths (like arm_cff_init_f32), use a dedicated initialization function for a specific size (like arm_cfft_init_1024_f32).

    +

    For all transforms functions (CFFT, RFFT ...) instead of using a generic initialization function that works for all lengths (like arm_cfft_init_f32), use a dedicated initialization function for a specific size (like arm_cfft_init_1024_f32).

    By using the right initialization function, you're telling the linker what is really used.

    If you use a generic function, the linker cannot deduce the used lengths and thus will keep all the constant tables required for each length.

    Then you need to use the right options for the compiler so that the unused tables and functions are removed. It is compiler dependent but generally the options are named like -ffunction-sections, -fdata-sections, --gc-sections ...

    +

    +Variations between the architectures

    +

    Some algorithms may give slightlty different results on different architectures (like M0 or M4/M7 or M55). It is a tradeoff made for speed reasons and to make best use of the different instruction sets.

    +

    All algorithms are compared with a double precision reference and the different versions (for different architectures) have the same characteristics when compared to the double precision (SNR bound, max bound for sample error ...)

    +

    As consequence, the small differences that may exists between the different architecture implementations should be too small to have any practical consequences.

    License

    The CMSIS-DSP is provided free of charge under the Apache 2.0 License.

    diff --git a/main/index.js b/main/index.js index 9706e4155..bcb56c535 100644 --- a/main/index.js +++ b/main/index.js @@ -11,5 +11,6 @@ var index = [ "Access to CMSIS-DSP", "index.html#pack", null ], [ "Preprocessor Macros", "index.html#preprocessor", null ], [ "Code size", "index.html#autotoc_md4", null ], + [ "Variations between the architectures", "index.html#autotoc_md5", null ], [ "License", "index.html#license", null ] ]; \ No newline at end of file diff --git a/main/modules.html b/main/modules.html index dfe607756..6889ab243 100644 --- a/main/modules.html +++ b/main/modules.html @@ -271,7 +271,7 @@  Convert 16-bit fixed point value  Convert 32-bit fixed point value  Convert 8-bit fixed point value - Weighted Sum + Weighted Average  SVM Functions  Linear SVM  Polynomial SVM diff --git a/main/navtreedata.js b/main/navtreedata.js index b43414bd2..d17e09d79 100644 --- a/main/navtreedata.js +++ b/main/navtreedata.js @@ -46,8 +46,8 @@ var NAVTREEINDEX = "group__Max.html#ga96f240086b586a9c724fb5285fd15570", "group__VECTOR.html#a69556ec665477f5fec2c155b58af059f", "group__genericTypes.html#ga956128b7a0d71442fb29cbcbecd71d71", -"structarm__cfft__instance__q31.html#ab8db3bbe7c61e6bb8ca2a55e3446e11a", -"structarm__lms__norm__instance__f32.html#a335c87e6fdc4b96601d95a5de8b9c463" +"structarm__cfft__instance__q31.html#a9760c603af5d85652496dbffd63a8a2e", +"structarm__lms__norm__instance__f32.html#a11402afa7c9b9dac4cb953fa386e74d2" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/main/navtreeindex0.js b/main/navtreeindex0.js index ec8b56441..49b6714df 100644 --- a/main/navtreeindex0.js +++ b/main/navtreeindex0.js @@ -3,43 +3,43 @@ var NAVTREEINDEX0 = "annotated.html":[5,0], "deprecated.html":[3], "dsppp_building.html":[1,9], -"dsppp_building.html#autotoc_md31":[1,9,0], -"dsppp_building.html#autotoc_md32":[1,9,1], +"dsppp_building.html#autotoc_md32":[1,9,0], +"dsppp_building.html#autotoc_md33":[1,9,1], "dsppp_code_size.html":[1,5], "dsppp_fusion.html":[1,6], "dsppp_guidelines.html":[1,10], "dsppp_intro.html":[1,0], "dsppp_main.html":[1], "dsppp_matrix.html":[1,8], -"dsppp_matrix.html#autotoc_md21":[1,8,0], -"dsppp_matrix.html#autotoc_md22":[1,8,0,0], -"dsppp_matrix.html#autotoc_md23":[1,8,0,1], -"dsppp_matrix.html#autotoc_md24":[1,8,1], -"dsppp_matrix.html#autotoc_md25":[1,8,2], -"dsppp_matrix.html#autotoc_md26":[1,8,2,0], -"dsppp_matrix.html#autotoc_md27":[1,8,2,1], -"dsppp_matrix.html#autotoc_md28":[1,8,2,2], -"dsppp_matrix.html#autotoc_md29":[1,8,2,3], -"dsppp_matrix.html#autotoc_md30":[1,8,2,4], +"dsppp_matrix.html#autotoc_md22":[1,8,0], +"dsppp_matrix.html#autotoc_md23":[1,8,0,0], +"dsppp_matrix.html#autotoc_md24":[1,8,0,1], +"dsppp_matrix.html#autotoc_md25":[1,8,1], +"dsppp_matrix.html#autotoc_md26":[1,8,2], +"dsppp_matrix.html#autotoc_md27":[1,8,2,0], +"dsppp_matrix.html#autotoc_md28":[1,8,2,1], +"dsppp_matrix.html#autotoc_md29":[1,8,2,2], +"dsppp_matrix.html#autotoc_md30":[1,8,2,3], +"dsppp_matrix.html#autotoc_md31":[1,8,2,4], "dsppp_memory_allocator.html":[1,3], "dsppp_memory_static_dynamic.html":[1,4], -"dsppp_memory_static_dynamic.html#autotoc_md17":[1,4,0], -"dsppp_memory_static_dynamic.html#autotoc_md18":[1,4,1], +"dsppp_memory_static_dynamic.html#autotoc_md18":[1,4,0], +"dsppp_memory_static_dynamic.html#autotoc_md19":[1,4,1], "dsppp_template.html":[1,1], -"dsppp_template.html#autotoc_md10":[1,1,3], -"dsppp_template.html#autotoc_md11":[1,1,4], -"dsppp_template.html#autotoc_md7":[1,1,0], -"dsppp_template.html#autotoc_md8":[1,1,1], -"dsppp_template.html#autotoc_md9":[1,1,2], +"dsppp_template.html#autotoc_md10":[1,1,2], +"dsppp_template.html#autotoc_md11":[1,1,3], +"dsppp_template.html#autotoc_md12":[1,1,4], +"dsppp_template.html#autotoc_md8":[1,1,0], +"dsppp_template.html#autotoc_md9":[1,1,1], "dsppp_vector.html":[1,7], -"dsppp_vector.html#autotoc_md19":[1,7,0], -"dsppp_vector.html#autotoc_md20":[1,7,1], +"dsppp_vector.html#autotoc_md20":[1,7,0], +"dsppp_vector.html#autotoc_md21":[1,7,1], "dsppp_vector_example.html":[1,2], -"dsppp_vector_example.html#autotoc_md12":[1,2,0], -"dsppp_vector_example.html#autotoc_md13":[1,2,1], -"dsppp_vector_example.html#autotoc_md14":[1,2,2], -"dsppp_vector_example.html#autotoc_md15":[1,2,3], -"dsppp_vector_example.html#autotoc_md16":[1,2,4], +"dsppp_vector_example.html#autotoc_md13":[1,2,0], +"dsppp_vector_example.html#autotoc_md14":[1,2,1], +"dsppp_vector_example.html#autotoc_md15":[1,2,2], +"dsppp_vector_example.html#autotoc_md16":[1,2,3], +"dsppp_vector_example.html#autotoc_md17":[1,2,4], "group__ALGO.html":[4,17,0], "group__ALGO.html#ga0daa478d27289dac1758367ae8d19a86":[4,17,0,2], "group__ALGO.html#ga25c5f009d6955ec75b47dff97784bfe6":[4,17,0,5], diff --git a/main/navtreeindex1.js b/main/navtreeindex1.js index e3003b3c3..a8dae46a9 100644 --- a/main/navtreeindex1.js +++ b/main/navtreeindex1.js @@ -232,22 +232,22 @@ var NAVTREEINDEX1 = "group__FIXED.html":[4,17,4], "group__FIXED.html#a01ff1590236123181364f4f60e0612c1":[4,17,4,5,1], "group__FIXED.html#a0ce5940174a9394578b544a6e30d53c4":[4,17,4,4,0], -"group__FIXED.html#a1142c76e6c46bb81c810ac62725f15a8":[4,17,4,15,6], -"group__FIXED.html#a1142c76e6c46bb81c810ac62725f15a8":[4,17,4,14,8], -"group__FIXED.html#a1142c76e6c46bb81c810ac62725f15a8":[4,17,4,13,5], "group__FIXED.html#a1142c76e6c46bb81c810ac62725f15a8":[4,17,4,11,5], "group__FIXED.html#a1142c76e6c46bb81c810ac62725f15a8":[4,17,4,10,8], -"group__FIXED.html#a1142c76e6c46bb81c810ac62725f15a8":[4,17,4,12,8], "group__FIXED.html#a1142c76e6c46bb81c810ac62725f15a8":[4,17,4,16,8], +"group__FIXED.html#a1142c76e6c46bb81c810ac62725f15a8":[4,17,4,12,8], "group__FIXED.html#a1142c76e6c46bb81c810ac62725f15a8":[4,17,4,17,6], -"group__FIXED.html#a1f74fa781bcb32c98ee7fc965942cdfb":[4,17,4,6,0], +"group__FIXED.html#a1142c76e6c46bb81c810ac62725f15a8":[4,17,4,13,5], +"group__FIXED.html#a1142c76e6c46bb81c810ac62725f15a8":[4,17,4,15,6], +"group__FIXED.html#a1142c76e6c46bb81c810ac62725f15a8":[4,17,4,14,8], "group__FIXED.html#a1f74fa781bcb32c98ee7fc965942cdfb":[4,17,4,8,0], -"group__FIXED.html#a28d86e3c76c4de2987c894a60af4699e":[4,17,4,17,4], -"group__FIXED.html#a28d86e3c76c4de2987c894a60af4699e":[4,17,4,12,5], +"group__FIXED.html#a1f74fa781bcb32c98ee7fc965942cdfb":[4,17,4,6,0], "group__FIXED.html#a28d86e3c76c4de2987c894a60af4699e":[4,17,4,10,5], +"group__FIXED.html#a28d86e3c76c4de2987c894a60af4699e":[4,17,4,17,4], "group__FIXED.html#a28d86e3c76c4de2987c894a60af4699e":[4,17,4,15,4], +"group__FIXED.html#a28d86e3c76c4de2987c894a60af4699e":[4,17,4,12,5], "group__FIXED.html#a28d86e3c76c4de2987c894a60af4699e":[4,17,4,16,5], -"group__FIXED.html#a28d86e3c76c4de2987c894a60af4699e":[4,17,4,13,4], "group__FIXED.html#a28d86e3c76c4de2987c894a60af4699e":[4,17,4,11,4], -"group__FIXED.html#a28d86e3c76c4de2987c894a60af4699e":[4,17,4,14,5] +"group__FIXED.html#a28d86e3c76c4de2987c894a60af4699e":[4,17,4,14,5], +"group__FIXED.html#a28d86e3c76c4de2987c894a60af4699e":[4,17,4,13,4] }; diff --git a/main/navtreeindex2.js b/main/navtreeindex2.js index 49873df4d..41e04cdd6 100644 --- a/main/navtreeindex2.js +++ b/main/navtreeindex2.js @@ -1,13 +1,13 @@ var NAVTREEINDEX2 = { -"group__FIXED.html#a2d6406bd24ea114ba6b092bd28c915cf":[4,17,4,12,12], -"group__FIXED.html#a2d6406bd24ea114ba6b092bd28c915cf":[4,17,4,13,9], "group__FIXED.html#a2d6406bd24ea114ba6b092bd28c915cf":[4,17,4,10,12], -"group__FIXED.html#a2d6406bd24ea114ba6b092bd28c915cf":[4,17,4,15,10], -"group__FIXED.html#a2d6406bd24ea114ba6b092bd28c915cf":[4,17,4,11,9], +"group__FIXED.html#a2d6406bd24ea114ba6b092bd28c915cf":[4,17,4,13,9], "group__FIXED.html#a2d6406bd24ea114ba6b092bd28c915cf":[4,17,4,14,12], -"group__FIXED.html#a2d6406bd24ea114ba6b092bd28c915cf":[4,17,4,17,10], "group__FIXED.html#a2d6406bd24ea114ba6b092bd28c915cf":[4,17,4,16,12], +"group__FIXED.html#a2d6406bd24ea114ba6b092bd28c915cf":[4,17,4,11,9], +"group__FIXED.html#a2d6406bd24ea114ba6b092bd28c915cf":[4,17,4,15,10], +"group__FIXED.html#a2d6406bd24ea114ba6b092bd28c915cf":[4,17,4,12,12], +"group__FIXED.html#a2d6406bd24ea114ba6b092bd28c915cf":[4,17,4,17,10], "group__FIXED.html#a334467121b703df4737919be4ddf5ab6":[4,17,4,2,1], "group__FIXED.html#a44566a2275a84a317842a12fc16a2ab5":[4,17,4,7,1], "group__FIXED.html#a4bbdd41bfc847213cc17df2150f2d36f":[4,17,4,8,1], @@ -16,99 +16,99 @@ var NAVTREEINDEX2 = "group__FIXED.html#a557f81ce640773012edda158e39bbc6b":[4,17,4,6,2], "group__FIXED.html#a5963fd4cd2c67a9090c4ce2455d847dd":[4,17,4,1,0], "group__FIXED.html#a651aa0bb6eccbdebdfc06ab9391bef00":[4,17,4,5,2], -"group__FIXED.html#a6ddf14356d850b9eed4659204c0701f9":[4,17,4,11,3], -"group__FIXED.html#a6ddf14356d850b9eed4659204c0701f9":[4,17,4,14,3], "group__FIXED.html#a6ddf14356d850b9eed4659204c0701f9":[4,17,4,13,3], +"group__FIXED.html#a6ddf14356d850b9eed4659204c0701f9":[4,17,4,10,3], "group__FIXED.html#a6ddf14356d850b9eed4659204c0701f9":[4,17,4,15,3], +"group__FIXED.html#a6ddf14356d850b9eed4659204c0701f9":[4,17,4,14,3], "group__FIXED.html#a6ddf14356d850b9eed4659204c0701f9":[4,17,4,12,3], -"group__FIXED.html#a6ddf14356d850b9eed4659204c0701f9":[4,17,4,17,3], -"group__FIXED.html#a6ddf14356d850b9eed4659204c0701f9":[4,17,4,10,3], "group__FIXED.html#a6ddf14356d850b9eed4659204c0701f9":[4,17,4,16,3], -"group__FIXED.html#a72d203e42fb6ea5b553ba67a1de5c8e0":[4,17,4,17,7], +"group__FIXED.html#a6ddf14356d850b9eed4659204c0701f9":[4,17,4,17,3], +"group__FIXED.html#a6ddf14356d850b9eed4659204c0701f9":[4,17,4,11,3], "group__FIXED.html#a72d203e42fb6ea5b553ba67a1de5c8e0":[4,17,4,15,7], "group__FIXED.html#a72d203e42fb6ea5b553ba67a1de5c8e0":[4,17,4,16,9], -"group__FIXED.html#a72d203e42fb6ea5b553ba67a1de5c8e0":[4,17,4,14,9], -"group__FIXED.html#a72d203e42fb6ea5b553ba67a1de5c8e0":[4,17,4,10,9], "group__FIXED.html#a72d203e42fb6ea5b553ba67a1de5c8e0":[4,17,4,12,9], -"group__FIXED.html#a72d203e42fb6ea5b553ba67a1de5c8e0":[4,17,4,11,6], +"group__FIXED.html#a72d203e42fb6ea5b553ba67a1de5c8e0":[4,17,4,17,7], +"group__FIXED.html#a72d203e42fb6ea5b553ba67a1de5c8e0":[4,17,4,10,9], "group__FIXED.html#a72d203e42fb6ea5b553ba67a1de5c8e0":[4,17,4,13,6], +"group__FIXED.html#a72d203e42fb6ea5b553ba67a1de5c8e0":[4,17,4,14,9], +"group__FIXED.html#a72d203e42fb6ea5b553ba67a1de5c8e0":[4,17,4,11,6], "group__FIXED.html#a7999bfbf0aeb8968d9e650ae9a4cfb64":[4,17,4,6,1], "group__FIXED.html#a7ffc338938e520fd66808215955ff493":[4,17,4,3,0], -"group__FIXED.html#a804a08646faa832db35bdb76eb11d8ce":[4,17,4,17,12], -"group__FIXED.html#a804a08646faa832db35bdb76eb11d8ce":[4,17,4,12,14], "group__FIXED.html#a804a08646faa832db35bdb76eb11d8ce":[4,17,4,15,12], +"group__FIXED.html#a804a08646faa832db35bdb76eb11d8ce":[4,17,4,17,12], "group__FIXED.html#a804a08646faa832db35bdb76eb11d8ce":[4,17,4,16,14], +"group__FIXED.html#a804a08646faa832db35bdb76eb11d8ce":[4,17,4,11,11], "group__FIXED.html#a804a08646faa832db35bdb76eb11d8ce":[4,17,4,14,14], +"group__FIXED.html#a804a08646faa832db35bdb76eb11d8ce":[4,17,4,12,14], "group__FIXED.html#a804a08646faa832db35bdb76eb11d8ce":[4,17,4,10,14], -"group__FIXED.html#a804a08646faa832db35bdb76eb11d8ce":[4,17,4,11,11], "group__FIXED.html#a804a08646faa832db35bdb76eb11d8ce":[4,17,4,13,11], -"group__FIXED.html#a82489093089b2a79bcd10151947d6ea0":[4,17,4,17,9], "group__FIXED.html#a82489093089b2a79bcd10151947d6ea0":[4,17,4,14,11], -"group__FIXED.html#a82489093089b2a79bcd10151947d6ea0":[4,17,4,10,11], +"group__FIXED.html#a82489093089b2a79bcd10151947d6ea0":[4,17,4,15,9], +"group__FIXED.html#a82489093089b2a79bcd10151947d6ea0":[4,17,4,13,8], "group__FIXED.html#a82489093089b2a79bcd10151947d6ea0":[4,17,4,12,11], "group__FIXED.html#a82489093089b2a79bcd10151947d6ea0":[4,17,4,11,8], -"group__FIXED.html#a82489093089b2a79bcd10151947d6ea0":[4,17,4,13,8], -"group__FIXED.html#a82489093089b2a79bcd10151947d6ea0":[4,17,4,15,9], +"group__FIXED.html#a82489093089b2a79bcd10151947d6ea0":[4,17,4,10,11], +"group__FIXED.html#a82489093089b2a79bcd10151947d6ea0":[4,17,4,17,9], "group__FIXED.html#a82489093089b2a79bcd10151947d6ea0":[4,17,4,16,11], +"group__FIXED.html#a85a6a04ab43381b2b7fe07411bc21c30":[4,17,4,11,0], +"group__FIXED.html#a85a6a04ab43381b2b7fe07411bc21c30":[4,17,4,15,0], "group__FIXED.html#a85a6a04ab43381b2b7fe07411bc21c30":[4,17,4,13,0], "group__FIXED.html#a85a6a04ab43381b2b7fe07411bc21c30":[4,17,4,17,0], -"group__FIXED.html#a85a6a04ab43381b2b7fe07411bc21c30":[4,17,4,15,0], -"group__FIXED.html#a85a6a04ab43381b2b7fe07411bc21c30":[4,17,4,11,0], "group__FIXED.html#a8702762da9c5e87aec64585fbd394026":[4,17,4,15,11], -"group__FIXED.html#a8702762da9c5e87aec64585fbd394026":[4,17,4,11,10], -"group__FIXED.html#a8702762da9c5e87aec64585fbd394026":[4,17,4,10,13], -"group__FIXED.html#a8702762da9c5e87aec64585fbd394026":[4,17,4,13,10], -"group__FIXED.html#a8702762da9c5e87aec64585fbd394026":[4,17,4,14,13], "group__FIXED.html#a8702762da9c5e87aec64585fbd394026":[4,17,4,12,13], +"group__FIXED.html#a8702762da9c5e87aec64585fbd394026":[4,17,4,13,10], "group__FIXED.html#a8702762da9c5e87aec64585fbd394026":[4,17,4,17,11], +"group__FIXED.html#a8702762da9c5e87aec64585fbd394026":[4,17,4,10,13], +"group__FIXED.html#a8702762da9c5e87aec64585fbd394026":[4,17,4,14,13], +"group__FIXED.html#a8702762da9c5e87aec64585fbd394026":[4,17,4,11,10], "group__FIXED.html#a8702762da9c5e87aec64585fbd394026":[4,17,4,16,13], "group__FIXED.html#a8cb3c5dac106a0ad1c6c9a30fe07ee8b":[4,17,4,2,0], -"group__FIXED.html#a8e5e814b5597ef8e3bc26eea1055d9cc":[4,17,4,5,0], "group__FIXED.html#a8e5e814b5597ef8e3bc26eea1055d9cc":[4,17,4,7,0], +"group__FIXED.html#a8e5e814b5597ef8e3bc26eea1055d9cc":[4,17,4,5,0], "group__FIXED.html#a8f96cd35088283e4b342b98b93de12fb":[4,17,4,16,1], +"group__FIXED.html#a8f96cd35088283e4b342b98b93de12fb":[4,17,4,12,1], "group__FIXED.html#a8f96cd35088283e4b342b98b93de12fb":[4,17,4,10,1], "group__FIXED.html#a8f96cd35088283e4b342b98b93de12fb":[4,17,4,14,1], -"group__FIXED.html#a8f96cd35088283e4b342b98b93de12fb":[4,17,4,12,1], -"group__FIXED.html#a93d26b6a060cb54cf37226c1c0dace6d":[4,17,4,10,0], +"group__FIXED.html#a93d26b6a060cb54cf37226c1c0dace6d":[4,17,4,16,0], "group__FIXED.html#a93d26b6a060cb54cf37226c1c0dace6d":[4,17,4,14,0], "group__FIXED.html#a93d26b6a060cb54cf37226c1c0dace6d":[4,17,4,12,0], -"group__FIXED.html#a93d26b6a060cb54cf37226c1c0dace6d":[4,17,4,16,0], +"group__FIXED.html#a93d26b6a060cb54cf37226c1c0dace6d":[4,17,4,10,0], "group__FIXED.html#a962ed922493b7610ace88e4100c7bf0c":[4,17,4,17,5], "group__FIXED.html#a962ed922493b7610ace88e4100c7bf0c":[4,17,4,12,6], -"group__FIXED.html#a962ed922493b7610ace88e4100c7bf0c":[4,17,4,16,6], -"group__FIXED.html#a962ed922493b7610ace88e4100c7bf0c":[4,17,4,15,5], -"group__FIXED.html#a962ed922493b7610ace88e4100c7bf0c":[4,17,4,10,6], "group__FIXED.html#a962ed922493b7610ace88e4100c7bf0c":[4,17,4,14,6], +"group__FIXED.html#a962ed922493b7610ace88e4100c7bf0c":[4,17,4,10,6], +"group__FIXED.html#a962ed922493b7610ace88e4100c7bf0c":[4,17,4,15,5], +"group__FIXED.html#a962ed922493b7610ace88e4100c7bf0c":[4,17,4,16,6], "group__FIXED.html#a9762a47a5bb47d23e70575b1e3c2c0a6":[4,17,4,1,1], -"group__FIXED.html#a9793af4b1dc7b9f0821cc8a403f24a77":[4,17,4,11,1], "group__FIXED.html#a9793af4b1dc7b9f0821cc8a403f24a77":[4,17,4,13,1], +"group__FIXED.html#a9793af4b1dc7b9f0821cc8a403f24a77":[4,17,4,11,1], "group__FIXED.html#a9793af4b1dc7b9f0821cc8a403f24a77":[4,17,4,15,1], "group__FIXED.html#a9793af4b1dc7b9f0821cc8a403f24a77":[4,17,4,17,1], "group__FIXED.html#a97baeea683b4be57269774d0485d11ab":[4,17,4,1,2], "group__FIXED.html#a97baeea683b4be57269774d0485d11ab":[4,17,4,3,2], -"group__FIXED.html#aa7aa9e59be253b7615ce173e37ed946d":[4,17,4,14,10], -"group__FIXED.html#aa7aa9e59be253b7615ce173e37ed946d":[4,17,4,17,8], -"group__FIXED.html#aa7aa9e59be253b7615ce173e37ed946d":[4,17,4,12,10], "group__FIXED.html#aa7aa9e59be253b7615ce173e37ed946d":[4,17,4,13,7], +"group__FIXED.html#aa7aa9e59be253b7615ce173e37ed946d":[4,17,4,12,10], +"group__FIXED.html#aa7aa9e59be253b7615ce173e37ed946d":[4,17,4,17,8], +"group__FIXED.html#aa7aa9e59be253b7615ce173e37ed946d":[4,17,4,10,10], "group__FIXED.html#aa7aa9e59be253b7615ce173e37ed946d":[4,17,4,16,10], -"group__FIXED.html#aa7aa9e59be253b7615ce173e37ed946d":[4,17,4,15,8], "group__FIXED.html#aa7aa9e59be253b7615ce173e37ed946d":[4,17,4,11,7], -"group__FIXED.html#aa7aa9e59be253b7615ce173e37ed946d":[4,17,4,10,10], -"group__FIXED.html#ab73eea75bcf30cad3237b94812c74ecd":[4,17,4,14,7], +"group__FIXED.html#aa7aa9e59be253b7615ce173e37ed946d":[4,17,4,15,8], +"group__FIXED.html#aa7aa9e59be253b7615ce173e37ed946d":[4,17,4,14,10], "group__FIXED.html#ab73eea75bcf30cad3237b94812c74ecd":[4,17,4,16,7], "group__FIXED.html#ab73eea75bcf30cad3237b94812c74ecd":[4,17,4,10,7], +"group__FIXED.html#ab73eea75bcf30cad3237b94812c74ecd":[4,17,4,14,7], "group__FIXED.html#ab73eea75bcf30cad3237b94812c74ecd":[4,17,4,12,7], "group__FIXED.html#acf448b0c979f51eb0ed528723bb8741e":[4,17,4,3,1], -"group__FIXED.html#ad283e893703a8081fe5ebfd84e80098d":[4,17,4,4,2], "group__FIXED.html#ad283e893703a8081fe5ebfd84e80098d":[4,17,4,2,2], -"group__FIXED.html#ad68a9e2f18b493a998a14c4ef0908a3c":[4,17,4,15,2], -"group__FIXED.html#ad68a9e2f18b493a998a14c4ef0908a3c":[4,17,4,12,2], -"group__FIXED.html#ad68a9e2f18b493a998a14c4ef0908a3c":[4,17,4,17,2], -"group__FIXED.html#ad68a9e2f18b493a998a14c4ef0908a3c":[4,17,4,16,2], +"group__FIXED.html#ad283e893703a8081fe5ebfd84e80098d":[4,17,4,4,2], "group__FIXED.html#ad68a9e2f18b493a998a14c4ef0908a3c":[4,17,4,13,2], -"group__FIXED.html#ad68a9e2f18b493a998a14c4ef0908a3c":[4,17,4,10,2], +"group__FIXED.html#ad68a9e2f18b493a998a14c4ef0908a3c":[4,17,4,12,2], "group__FIXED.html#ad68a9e2f18b493a998a14c4ef0908a3c":[4,17,4,14,2], +"group__FIXED.html#ad68a9e2f18b493a998a14c4ef0908a3c":[4,17,4,10,2], +"group__FIXED.html#ad68a9e2f18b493a998a14c4ef0908a3c":[4,17,4,17,2], +"group__FIXED.html#ad68a9e2f18b493a998a14c4ef0908a3c":[4,17,4,15,2], "group__FIXED.html#ad68a9e2f18b493a998a14c4ef0908a3c":[4,17,4,11,2], +"group__FIXED.html#ad68a9e2f18b493a998a14c4ef0908a3c":[4,17,4,16,2], "group__FIXED.html#add70f98e7103309ae6d6d70bb41e52f8":[4,17,4,7,2], "group__FIXED.html#aeef9e0d98abf171afcc7b098740a7d87":[4,17,4,16,4], "group__FIXED.html#aeef9e0d98abf171afcc7b098740a7d87":[4,17,4,10,4], diff --git a/main/navtreeindex3.js b/main/navtreeindex3.js index 751868aa4..b8d6ee187 100644 --- a/main/navtreeindex3.js +++ b/main/navtreeindex3.js @@ -49,18 +49,18 @@ var NAVTREEINDEX3 = "group__HeliumFloatNumber.html#a80c09e97407d5640a99667e3ea61d293":[4,17,8,1,0,1,4], "group__HeliumFloatNumber.html#add1c7d91c34e7bbfdb88eb6b86707df0":[4,17,8,1,0,1,1], "group__HeliumFloatNumber.html#af3b22a8914fdb0ccb348b19421f45bdc":[4,17,8,1,0,1,0], -"group__HeliumFloatNumber.html#structinner_1_1vctpq_3_01float_01_4":[4,17,8,1,6], "group__HeliumFloatNumber.html#structinner_1_1vctpq_3_01float_01_4":[4,17,8,1,0,2], -"group__HeliumFloatNumber.html#structinner_1_1vload1__gen__stride":[4,17,8,1,7], +"group__HeliumFloatNumber.html#structinner_1_1vctpq_3_01float_01_4":[4,17,8,1,6], "group__HeliumFloatNumber.html#structinner_1_1vload1__gen__stride":[4,17,8,1,0,3], -"group__HeliumFloatNumber.html#structinner_1_1vload1__gen__stride_3_010_00_011_00_012_00_013_01_4":[4,17,8,1,8], +"group__HeliumFloatNumber.html#structinner_1_1vload1__gen__stride":[4,17,8,1,7], "group__HeliumFloatNumber.html#structinner_1_1vload1__gen__stride_3_010_00_011_00_012_00_013_01_4":[4,17,8,1,0,4], -"group__HeliumFloatNumber.html#structinner_1_1vload1__gen__stride__z":[4,17,8,1,9], +"group__HeliumFloatNumber.html#structinner_1_1vload1__gen__stride_3_010_00_011_00_012_00_013_01_4":[4,17,8,1,8], "group__HeliumFloatNumber.html#structinner_1_1vload1__gen__stride__z":[4,17,8,1,0,5], +"group__HeliumFloatNumber.html#structinner_1_1vload1__gen__stride__z":[4,17,8,1,9], "group__HeliumFloatNumber.html#structinner_1_1vload1__gen__stride__z_3_010_00_011_00_012_00_013_01_4":[4,17,8,1,10], "group__HeliumFloatNumber.html#structinner_1_1vload1__gen__stride__z_3_010_00_011_00_012_00_013_01_4":[4,17,8,1,0,6], -"group__HeliumFloatNumber.html#structinner_1_1vstore1__gen__stride":[4,17,8,1,11], "group__HeliumFloatNumber.html#structinner_1_1vstore1__gen__stride":[4,17,8,1,0,7], +"group__HeliumFloatNumber.html#structinner_1_1vstore1__gen__stride":[4,17,8,1,11], "group__HeliumFloatNumber.html#structinner_1_1vstore1__gen__stride_3_010_00_011_00_012_00_013_01_4":[4,17,8,1,12], "group__HeliumFloatNumber.html#structinner_1_1vstore1__gen__stride_3_010_00_011_00_012_00_013_01_4":[4,17,8,1,0,8], "group__HeliumFloatNumber.html#structinner_1_1vstore1__gen__stride__z":[4,17,8,1,0,9], @@ -135,16 +135,16 @@ var NAVTREEINDEX3 = "group__MEMBUF.html#ga274dd8714485eed9c9328973d44ec5dc":[4,17,7,0,2], "group__MEMBUF.html#ga355913a807536c939461da9a431d9f51":[4,17,7,0,3], "group__MEMORY.html":[4,17,7], -"group__MEMORY.html#a156294d0fe3e6e70fbc2708420e5dcd6":[4,17,7,2,1,1], "group__MEMORY.html#a156294d0fe3e6e70fbc2708420e5dcd6":[4,17,7,7,1], +"group__MEMORY.html#a156294d0fe3e6e70fbc2708420e5dcd6":[4,17,7,2,1,1], "group__MEMORY.html#a20194325f0380eb3bbc6bc6c8b2697d9":[4,17,7,7,4], "group__MEMORY.html#a20194325f0380eb3bbc6bc6c8b2697d9":[4,17,7,2,1,4], "group__MEMORY.html#a3b12e09f14619e8516bac335eff12623":[4,17,7,2,1,3], "group__MEMORY.html#a3b12e09f14619e8516bac335eff12623":[4,17,7,7,3], "group__MEMORY.html#a5c53f3f575b27667ddb9725a3567ba34":[4,17,7,2,1,0], "group__MEMORY.html#a5c53f3f575b27667ddb9725a3567ba34":[4,17,7,7,0], -"group__MEMORY.html#a8f9b58173ea085e82282d18f10675888":[4,17,7,7,2], "group__MEMORY.html#a8f9b58173ea085e82282d18f10675888":[4,17,7,2,1,2], +"group__MEMORY.html#a8f9b58173ea085e82282d18f10675888":[4,17,7,7,2], "group__MEMORY.html#classarm__cmsis__dsp_1_1MemoryPool":[4,17,7,7], "group__MEMORY.html#classarm__cmsis__dsp_1_1MemoryPool":[4,17,7,2,1], "group__MEMORY.html#structarm__cmsis__dsp_1_1ListElem":[4,17,7,6], @@ -153,8 +153,8 @@ var NAVTREEINDEX3 = "group__MEMORY.html#structarm__cmsis__dsp_1_1default__user__allocator__malloc__free":[4,17,7,0,0], "group__MEMORY.html#structarm__cmsis__dsp_1_1malloc__allocator":[4,17,7,5], "group__MEMORY.html#structarm__cmsis__dsp_1_1malloc__allocator":[4,17,7,1,0], -"group__MEMORY.html#structarm__cmsis__dsp_1_1user__allocator__aligned__malloc":[4,17,7,0,1], "group__MEMORY.html#structarm__cmsis__dsp_1_1user__allocator__aligned__malloc":[4,17,7,4], +"group__MEMORY.html#structarm__cmsis__dsp_1_1user__allocator__aligned__malloc":[4,17,7,0,1], "group__MEMTOOL.html":[4,17,7,2], "group__MEMVEC.html":[4,17,7,1], "group__MFCC.html":[4,15,2], @@ -219,13 +219,13 @@ var NAVTREEINDEX3 = "group__Matrix.html#a0959a94799d02bc0b7d8dee2bf9236e8":[4,17,6,4,17], "group__Matrix.html#a0959a94799d02bc0b7d8dee2bf9236e8":[4,17,6,6,16], "group__Matrix.html#a0a9220975aae16789db515892427923b":[4,17,6,2,24], -"group__Matrix.html#a0ccd183ce4debf4db98aad74fe31e013":[4,17,6,5,13], "group__Matrix.html#a0ccd183ce4debf4db98aad74fe31e013":[4,17,6,2,13], -"group__Matrix.html#a0ccd183ce4debf4db98aad74fe31e013":[4,17,6,3,15], +"group__Matrix.html#a0ccd183ce4debf4db98aad74fe31e013":[4,17,6,5,13], "group__Matrix.html#a0ccd183ce4debf4db98aad74fe31e013":[4,17,6,4,13], "group__Matrix.html#a0ccd183ce4debf4db98aad74fe31e013":[4,17,6,6,12], -"group__Matrix.html#a0debe871b5dffff9c427427062d3e82c":[4,17,6,5,5], +"group__Matrix.html#a0ccd183ce4debf4db98aad74fe31e013":[4,17,6,3,15], "group__Matrix.html#a0debe871b5dffff9c427427062d3e82c":[4,17,6,6,5], +"group__Matrix.html#a0debe871b5dffff9c427427062d3e82c":[4,17,6,5,5], "group__Matrix.html#a0fb228c4ace4a06bc2d993f8ff4dd002":[4,17,6,0,10], "group__Matrix.html#a104c4b97ad18da8b99b5760a5a1bfffc":[4,17,6,3,21], "group__Matrix.html#a152a6be370e8f9d66582074364b74f93":[4,17,6,2,2], @@ -233,20 +233,20 @@ var NAVTREEINDEX3 = "group__Matrix.html#a1b4bee75d06b5bfd426f9ade8f53ede9":[4,17,6,4,6], "group__Matrix.html#a1c932f31156287cd61b02e6b3bbba903":[4,17,6,3,34], "group__Matrix.html#a21fdccd79d0757d8b094490d05a13ca7":[4,17,6,3,22], -"group__Matrix.html#a2407bc5c02d16073944b9eab16179c5a":[4,17,6,3,10], -"group__Matrix.html#a2407bc5c02d16073944b9eab16179c5a":[4,17,6,6,7], "group__Matrix.html#a2407bc5c02d16073944b9eab16179c5a":[4,17,6,5,7], +"group__Matrix.html#a2407bc5c02d16073944b9eab16179c5a":[4,17,6,6,7], +"group__Matrix.html#a2407bc5c02d16073944b9eab16179c5a":[4,17,6,3,10], "group__Matrix.html#a2407bc5c02d16073944b9eab16179c5a":[4,17,6,4,7], "group__Matrix.html#a24208668fc0f1a1abfff866c0dbfa6e7":[4,17,6,4,10], -"group__Matrix.html#a24208668fc0f1a1abfff866c0dbfa6e7":[4,17,6,6,9], "group__Matrix.html#a24208668fc0f1a1abfff866c0dbfa6e7":[4,17,6,3,12], "group__Matrix.html#a24208668fc0f1a1abfff866c0dbfa6e7":[4,17,6,5,10], +"group__Matrix.html#a24208668fc0f1a1abfff866c0dbfa6e7":[4,17,6,6,9], "group__Matrix.html#a26a138c661ca0a7ab4d5263c12058172":[4,17,6,2,3], "group__Matrix.html#a2856349806237c54fcec23adb8fff942":[4,17,6,3,1], "group__Matrix.html#a2a0db0db3652e250eb2d0780441c0c89":[4,17,6,0,7], "group__Matrix.html#a2b07d557d906e244524ca72a204aefdc":[4,17,6,0,8], -"group__Matrix.html#a2c89cfc9d462a12dfd6da8b6b73f2188":[4,17,6,5,4], "group__Matrix.html#a2c89cfc9d462a12dfd6da8b6b73f2188":[4,17,6,6,4], +"group__Matrix.html#a2c89cfc9d462a12dfd6da8b6b73f2188":[4,17,6,5,4], "group__Matrix.html#a2dbffa29bb3a793b745857fa484d3ef9":[4,17,6,2,32], "group__Matrix.html#a32a8671aeb0d3c70fcf73e13ab4f498f":[4,17,6,4,5], "group__Matrix.html#a34b2c13038acf1bc2d20d8c89bf9efef":[4,17,6,3,9] diff --git a/main/navtreeindex4.js b/main/navtreeindex4.js index 3b1cf2bdd..b3144d3bb 100644 --- a/main/navtreeindex4.js +++ b/main/navtreeindex4.js @@ -5,41 +5,41 @@ var NAVTREEINDEX4 = "group__Matrix.html#a3c86ab9f0d0aa720752d96b66b6ec23f":[4,17,6,2,27], "group__Matrix.html#a3eb58acde067d2d3d9a6be6c83f34237":[4,17,6,2,26], "group__Matrix.html#a3f40b54f9911dfc184749149b4b48c24":[4,17,6,3,3], -"group__Matrix.html#a3f903fb6260a6852a116232ce0d457d5":[4,17,6,3,19], "group__Matrix.html#a3f903fb6260a6852a116232ce0d457d5":[4,17,6,2,17], -"group__Matrix.html#a3f903fb6260a6852a116232ce0d457d5":[4,17,6,2,18], "group__Matrix.html#a3f903fb6260a6852a116232ce0d457d5":[4,17,6,3,20], +"group__Matrix.html#a3f903fb6260a6852a116232ce0d457d5":[4,17,6,2,18], +"group__Matrix.html#a3f903fb6260a6852a116232ce0d457d5":[4,17,6,3,19], "group__Matrix.html#a414c883585f5b0900f7481128db6a14d":[4,17,6,2,8], -"group__Matrix.html#a46b2ac2ce751d8768dcbdbe26ea14688":[4,17,6,4,9], "group__Matrix.html#a46b2ac2ce751d8768dcbdbe26ea14688":[4,17,6,5,9], +"group__Matrix.html#a46b2ac2ce751d8768dcbdbe26ea14688":[4,17,6,4,9], "group__Matrix.html#a46b2ac2ce751d8768dcbdbe26ea14688":[4,17,6,6,8], "group__Matrix.html#a4a7fd895c6f10261c3cdc129f2199bf7":[4,17,6,2,6], "group__Matrix.html#a50d8b064449dd4909210aa5779b16e0c":[4,17,6,2,25], "group__Matrix.html#a5759e77b23a7a3f4f3c854d069a64c96":[4,17,6,3,28], "group__Matrix.html#a5813348d82f4ffff56e76c908240a9b6":[4,17,6,3,2], "group__Matrix.html#a5cc6b0ed875cfa1af09ae3ae5dda1cd3":[4,17,6,2,7], +"group__Matrix.html#a650317a5381b16c9043b48e7ef5810e4":[4,17,6,3,14], "group__Matrix.html#a650317a5381b16c9043b48e7ef5810e4":[4,17,6,5,12], "group__Matrix.html#a650317a5381b16c9043b48e7ef5810e4":[4,17,6,4,12], -"group__Matrix.html#a650317a5381b16c9043b48e7ef5810e4":[4,17,6,2,12], "group__Matrix.html#a650317a5381b16c9043b48e7ef5810e4":[4,17,6,6,11], -"group__Matrix.html#a650317a5381b16c9043b48e7ef5810e4":[4,17,6,3,14], +"group__Matrix.html#a650317a5381b16c9043b48e7ef5810e4":[4,17,6,2,12], "group__Matrix.html#a660cc287d61bac84138fe7fac3959de9":[4,17,6,2,22], "group__Matrix.html#a660cc287d61bac84138fe7fac3959de9":[4,17,6,4,34], "group__Matrix.html#a6757820eff5b2b9b4cb7b65ef08754cd":[4,17,6,3,33], -"group__Matrix.html#a687f8049693290108598990507ed57ea":[4,17,6,5,0], "group__Matrix.html#a687f8049693290108598990507ed57ea":[4,17,6,4,0], "group__Matrix.html#a687f8049693290108598990507ed57ea":[4,17,6,6,0], +"group__Matrix.html#a687f8049693290108598990507ed57ea":[4,17,6,5,0], "group__Matrix.html#a68ec7f0fa0366b0ef54d3ef08f055840":[4,17,6,3,36], "group__Matrix.html#a69c3747e99a6320796ccc2fbda4c57e6":[4,17,6,4,4], -"group__Matrix.html#a6ad582e33d9d357d18ad29a6782a4758":[4,17,6,5,27], "group__Matrix.html#a6ad582e33d9d357d18ad29a6782a4758":[4,17,6,4,27], "group__Matrix.html#a6ad582e33d9d357d18ad29a6782a4758":[4,17,6,6,26], -"group__Matrix.html#a6b8eaa6efee3fb279778cae71dce8d82":[4,17,6,5,23], -"group__Matrix.html#a6b8eaa6efee3fb279778cae71dce8d82":[4,17,6,6,22], +"group__Matrix.html#a6ad582e33d9d357d18ad29a6782a4758":[4,17,6,5,27], "group__Matrix.html#a6b8eaa6efee3fb279778cae71dce8d82":[4,17,6,4,23], -"group__Matrix.html#a6d0bf98e7c8035146f623dc244aa7031":[4,17,6,5,19], +"group__Matrix.html#a6b8eaa6efee3fb279778cae71dce8d82":[4,17,6,6,22], +"group__Matrix.html#a6b8eaa6efee3fb279778cae71dce8d82":[4,17,6,5,23], "group__Matrix.html#a6d0bf98e7c8035146f623dc244aa7031":[4,17,6,6,18], "group__Matrix.html#a6d0bf98e7c8035146f623dc244aa7031":[4,17,6,4,19], +"group__Matrix.html#a6d0bf98e7c8035146f623dc244aa7031":[4,17,6,5,19], "group__Matrix.html#a6d255382635c508140d61fefbf56a139":[4,17,6,3,24], "group__Matrix.html#a6e5d540a9dc9b09ac43aac1cb71c6e8a":[4,17,6,2,19], "group__Matrix.html#a6ea5f051a5f2d8ad61f6199a47a0e3c5":[4,17,6,2,0], @@ -48,21 +48,21 @@ var NAVTREEINDEX4 = "group__Matrix.html#a752d3b8ff9cb1878ba0eb32e6f1cf93b":[4,17,6,4,1], "group__Matrix.html#a752d3b8ff9cb1878ba0eb32e6f1cf93b":[4,17,6,6,1], "group__Matrix.html#a75af2b6e66821cea29c146606b3d2e06":[4,17,6,3,23], -"group__Matrix.html#a762e0a4e5b0ae1b1d0ed3ba4d03f2ed8":[4,17,6,4,8], "group__Matrix.html#a762e0a4e5b0ae1b1d0ed3ba4d03f2ed8":[4,17,6,5,8], -"group__Matrix.html#a77ce93b968bb2f862d818adadada9eb9":[4,17,6,3,26], -"group__Matrix.html#a77ce93b968bb2f862d818adadada9eb9":[4,17,6,6,32], +"group__Matrix.html#a762e0a4e5b0ae1b1d0ed3ba4d03f2ed8":[4,17,6,4,8], "group__Matrix.html#a77ce93b968bb2f862d818adadada9eb9":[4,17,6,5,34], +"group__Matrix.html#a77ce93b968bb2f862d818adadada9eb9":[4,17,6,6,32], +"group__Matrix.html#a77ce93b968bb2f862d818adadada9eb9":[4,17,6,3,26], "group__Matrix.html#a78e2aa24c006e2bfa1d32dad4cd8362d":[4,17,6,2,33], -"group__Matrix.html#a7ad4ca94593f2fbfdc74dff287d765b7":[4,17,6,2,11], -"group__Matrix.html#a7ad4ca94593f2fbfdc74dff287d765b7":[4,17,6,3,13], +"group__Matrix.html#a7ad4ca94593f2fbfdc74dff287d765b7":[4,17,6,5,11], "group__Matrix.html#a7ad4ca94593f2fbfdc74dff287d765b7":[4,17,6,6,10], "group__Matrix.html#a7ad4ca94593f2fbfdc74dff287d765b7":[4,17,6,4,11], -"group__Matrix.html#a7ad4ca94593f2fbfdc74dff287d765b7":[4,17,6,5,11], +"group__Matrix.html#a7ad4ca94593f2fbfdc74dff287d765b7":[4,17,6,2,11], +"group__Matrix.html#a7ad4ca94593f2fbfdc74dff287d765b7":[4,17,6,3,13], "group__Matrix.html#a7c7069fb572485bdcb053f3ed3ca3a98":[4,17,6,2,29], +"group__Matrix.html#a8118683e0ec73b73b18f0a1a7fa1f906":[4,17,6,4,25], "group__Matrix.html#a8118683e0ec73b73b18f0a1a7fa1f906":[4,17,6,6,24], "group__Matrix.html#a8118683e0ec73b73b18f0a1a7fa1f906":[4,17,6,5,25], -"group__Matrix.html#a8118683e0ec73b73b18f0a1a7fa1f906":[4,17,6,4,25], "group__Matrix.html#a81676dc7b4448c810d80f7fdd7fdf271":[4,17,6,3,31], "group__Matrix.html#a81bbd27472244a23580a875e567ea623":[4,17,6,4,22], "group__Matrix.html#a81bbd27472244a23580a875e567ea623":[4,17,6,5,22], @@ -77,62 +77,62 @@ var NAVTREEINDEX4 = "group__Matrix.html#a92d556ad09113e9ed985e7636995413b":[4,17,6,0,0], "group__Matrix.html#a98d97d787079874b0628ba9d29b79d9d":[4,17,6,3,27], "group__Matrix.html#a9b8294b1a8c6b79806dd547b55eeea17":[4,17,6,2,20], -"group__Matrix.html#a9c24dc9442de2fea0be2233784dbd20f":[4,17,6,4,26], "group__Matrix.html#a9c24dc9442de2fea0be2233784dbd20f":[4,17,6,5,26], +"group__Matrix.html#a9c24dc9442de2fea0be2233784dbd20f":[4,17,6,4,26], "group__Matrix.html#a9c24dc9442de2fea0be2233784dbd20f":[4,17,6,6,25], -"group__Matrix.html#a9f6ac1c0c3103373de53563431540c2f":[4,17,6,5,3], "group__Matrix.html#a9f6ac1c0c3103373de53563431540c2f":[4,17,6,6,3], -"group__Matrix.html#aa30a13fab205018847bd55d9d05d3db2":[4,17,6,5,6], +"group__Matrix.html#a9f6ac1c0c3103373de53563431540c2f":[4,17,6,5,3], "group__Matrix.html#aa30a13fab205018847bd55d9d05d3db2":[4,17,6,6,6], +"group__Matrix.html#aa30a13fab205018847bd55d9d05d3db2":[4,17,6,5,6], "group__Matrix.html#aa48d05b8685804d22542050771976da1":[4,17,6,2,28], -"group__Matrix.html#aa75374fd065ee08cc401b35573a6ad63":[4,17,6,2,16], "group__Matrix.html#aa75374fd065ee08cc401b35573a6ad63":[4,17,6,3,18], +"group__Matrix.html#aa75374fd065ee08cc401b35573a6ad63":[4,17,6,2,16], "group__Matrix.html#aa9816f3ba8ed086ce56aef9ed2313dc9":[4,17,6,2,31], -"group__Matrix.html#aa9bf87d0563aaaea25d796d0f46a5b9e":[4,17,6,6,34], -"group__Matrix.html#aa9bf87d0563aaaea25d796d0f46a5b9e":[4,17,6,5,36], "group__Matrix.html#aa9bf87d0563aaaea25d796d0f46a5b9e":[4,17,6,4,36], -"group__Matrix.html#aaa84d81a018b21a4612e48b89b621cf9":[4,17,6,3,16], -"group__Matrix.html#aaa84d81a018b21a4612e48b89b621cf9":[4,17,6,4,14], +"group__Matrix.html#aa9bf87d0563aaaea25d796d0f46a5b9e":[4,17,6,5,36], +"group__Matrix.html#aa9bf87d0563aaaea25d796d0f46a5b9e":[4,17,6,6,34], "group__Matrix.html#aaa84d81a018b21a4612e48b89b621cf9":[4,17,6,6,13], "group__Matrix.html#aaa84d81a018b21a4612e48b89b621cf9":[4,17,6,2,14], "group__Matrix.html#aaa84d81a018b21a4612e48b89b621cf9":[4,17,6,5,14], +"group__Matrix.html#aaa84d81a018b21a4612e48b89b621cf9":[4,17,6,3,16], +"group__Matrix.html#aaa84d81a018b21a4612e48b89b621cf9":[4,17,6,4,14], "group__Matrix.html#aaec199749e60e2e881b4d3eb302123a3":[4,17,6,5,2], "group__Matrix.html#ab00a60bfa54e851d42f81f216c240a69":[4,17,6,0,5], "group__Matrix.html#ab75a7e6a7489be47fa7836134cac7587":[4,17,6,3,35], -"group__Matrix.html#ab7c0b49d5a9fc39d067a404c09e031ab":[4,17,6,6,20], -"group__Matrix.html#ab7c0b49d5a9fc39d067a404c09e031ab":[4,17,6,4,21], "group__Matrix.html#ab7c0b49d5a9fc39d067a404c09e031ab":[4,17,6,5,21], +"group__Matrix.html#ab7c0b49d5a9fc39d067a404c09e031ab":[4,17,6,4,21], +"group__Matrix.html#ab7c0b49d5a9fc39d067a404c09e031ab":[4,17,6,6,20], "group__Matrix.html#abb20cdd597b9ff4a34cb9a01eb740cf7":[4,17,6,2,5], -"group__Matrix.html#abb20cdd597b9ff4a34cb9a01eb740cf7":[4,17,6,3,4], "group__Matrix.html#abb20cdd597b9ff4a34cb9a01eb740cf7":[4,17,6,2,4], +"group__Matrix.html#abb20cdd597b9ff4a34cb9a01eb740cf7":[4,17,6,3,4], "group__Matrix.html#abb20cdd597b9ff4a34cb9a01eb740cf7":[4,17,6,3,5], "group__Matrix.html#abbc70838051cf545ac3b19f0eceba75c":[4,17,6,3,25], -"group__Matrix.html#abbc70838051cf545ac3b19f0eceba75c":[4,17,6,5,33], -"group__Matrix.html#abbc70838051cf545ac3b19f0eceba75c":[4,17,6,4,33], "group__Matrix.html#abbc70838051cf545ac3b19f0eceba75c":[4,17,6,6,31], +"group__Matrix.html#abbc70838051cf545ac3b19f0eceba75c":[4,17,6,4,33], +"group__Matrix.html#abbc70838051cf545ac3b19f0eceba75c":[4,17,6,5,33], "group__Matrix.html#abca00dccb6f37ab25656ba78c1148a48":[4,17,6,2,30], "group__Matrix.html#abef82aff66a21b7555704542dc028be5":[4,17,6,6,28], -"group__Matrix.html#abef82aff66a21b7555704542dc028be5":[4,17,6,5,30], "group__Matrix.html#abef82aff66a21b7555704542dc028be5":[4,17,6,4,30], +"group__Matrix.html#abef82aff66a21b7555704542dc028be5":[4,17,6,5,30], "group__Matrix.html#ac0ab62adc16d1427b1790a76165046db":[4,17,6,4,3], "group__Matrix.html#ac1064b2371946611521f83f697c61218":[4,17,6,1,2], "group__Matrix.html#ac36ac26d54b3c30816c5d59a37242d22":[4,17,6,0,1], "group__Matrix.html#ac4ecc10146b3c70e8c8b982acf22a264":[4,17,6,5,1], "group__Matrix.html#ac627da20519ec89ebb92b2a6c1d055da":[4,17,6,3,29], "group__Matrix.html#ac97383814f751a5ea5da913a69b8b266":[4,17,6,6,19], -"group__Matrix.html#ac97383814f751a5ea5da913a69b8b266":[4,17,6,4,20], "group__Matrix.html#ac97383814f751a5ea5da913a69b8b266":[4,17,6,5,20], +"group__Matrix.html#ac97383814f751a5ea5da913a69b8b266":[4,17,6,4,20], +"group__Matrix.html#aca15e2e68bd4a3b93d4f033025ace86f":[4,17,6,4,18], "group__Matrix.html#aca15e2e68bd4a3b93d4f033025ace86f":[4,17,6,6,17], "group__Matrix.html#aca15e2e68bd4a3b93d4f033025ace86f":[4,17,6,5,18], -"group__Matrix.html#aca15e2e68bd4a3b93d4f033025ace86f":[4,17,6,4,18], "group__Matrix.html#acae5d2876d2f62359f26356ce126c944":[4,17,6,3,17], "group__Matrix.html#acae5d2876d2f62359f26356ce126c944":[4,17,6,2,15], -"group__Matrix.html#ace752342b84c4006392c29bf3b8d3e3e":[4,17,6,5,31], -"group__Matrix.html#ace752342b84c4006392c29bf3b8d3e3e":[4,17,6,6,29], "group__Matrix.html#ace752342b84c4006392c29bf3b8d3e3e":[4,17,6,4,31], -"group__Matrix.html#ad5d3007013eadb0f106e49f96f588b9f":[4,17,6,4,16], +"group__Matrix.html#ace752342b84c4006392c29bf3b8d3e3e":[4,17,6,6,29], +"group__Matrix.html#ace752342b84c4006392c29bf3b8d3e3e":[4,17,6,5,31], "group__Matrix.html#ad5d3007013eadb0f106e49f96f588b9f":[4,17,6,6,15], "group__Matrix.html#ad5d3007013eadb0f106e49f96f588b9f":[4,17,6,5,16], +"group__Matrix.html#ad5d3007013eadb0f106e49f96f588b9f":[4,17,6,4,16], "group__Matrix.html#ad62d481db7f40d0856f327ac78cbb69f":[4,17,6,4,28], "group__Matrix.html#ad62d481db7f40d0856f327ac78cbb69f":[4,17,6,5,28], "group__Matrix.html#ad66af455b861f9e03c1166e5b3c20f6c":[4,17,6,0,4], @@ -140,8 +140,8 @@ var NAVTREEINDEX4 = "group__Matrix.html#ae451a86820bd819a2a3411197ac4fa76":[4,17,6,3,6], "group__Matrix.html#ae53a2a6a33e8e751225cbf2db30cce2f":[4,17,6,2,9], "group__Matrix.html#ae67c6eab2c1a37744a6fa619329f1cca":[4,17,6,0,6], -"group__Matrix.html#ae96bfb09cb5209ed70ffdf5f41789572":[4,17,6,3,38], "group__Matrix.html#ae96bfb09cb5209ed70ffdf5f41789572":[4,17,6,2,34], +"group__Matrix.html#ae96bfb09cb5209ed70ffdf5f41789572":[4,17,6,3,38], "group__Matrix.html#aea381d885caa49623b14f84710370d29":[4,17,6,2,23], "group__Matrix.html#af042b7d92409f81e199142de7633ca7a":[4,17,6,5,29], "group__Matrix.html#af042b7d92409f81e199142de7633ca7a":[4,17,6,4,29], @@ -149,18 +149,18 @@ var NAVTREEINDEX4 = "group__Matrix.html#af6a9502799ec81b84c2943ba4666418a":[4,17,6,3,37], "group__Matrix.html#af6db0b146cf2443781c0143d83a241af":[4,17,6,3,7], "group__Matrix.html#af8c1e92d2aa2984005d39958fb6b0558":[4,17,6,5,32], -"group__Matrix.html#af8c1e92d2aa2984005d39958fb6b0558":[4,17,6,6,30], "group__Matrix.html#af8c1e92d2aa2984005d39958fb6b0558":[4,17,6,4,32], -"group__Matrix.html#af92b732111615edb4cd8fc670cec4a04":[4,17,6,6,33], +"group__Matrix.html#af8c1e92d2aa2984005d39958fb6b0558":[4,17,6,6,30], "group__Matrix.html#af92b732111615edb4cd8fc670cec4a04":[4,17,6,5,35], +"group__Matrix.html#af92b732111615edb4cd8fc670cec4a04":[4,17,6,6,33], "group__Matrix.html#af92b732111615edb4cd8fc670cec4a04":[4,17,6,4,35], "group__Matrix.html#af99af8432c5198ee872efb409e20383f":[4,17,6,2,21], -"group__Matrix.html#afe4b68a230247eb95dbf680d3928e6b0":[4,17,6,5,24], -"group__Matrix.html#afe4b68a230247eb95dbf680d3928e6b0":[4,17,6,6,23], "group__Matrix.html#afe4b68a230247eb95dbf680d3928e6b0":[4,17,6,4,24], -"group__Matrix.html#afe56f38205f20cee29e0b3293d86485a":[4,17,6,5,15], +"group__Matrix.html#afe4b68a230247eb95dbf680d3928e6b0":[4,17,6,6,23], +"group__Matrix.html#afe4b68a230247eb95dbf680d3928e6b0":[4,17,6,5,24], "group__Matrix.html#afe56f38205f20cee29e0b3293d86485a":[4,17,6,4,15], "group__Matrix.html#afe56f38205f20cee29e0b3293d86485a":[4,17,6,6,14], +"group__Matrix.html#afe56f38205f20cee29e0b3293d86485a":[4,17,6,5,15], "group__Matrix.html#gac70f640476a4639f2005ff2b338c2545":[4,17,6,7], "group__Matrix.html#structarm__cmsis__dsp_1_1Matrix":[4,17,6,2], "group__Matrix.html#structarm__cmsis__dsp_1_1MatrixView":[4,17,6,4], diff --git a/main/navtreeindex5.js b/main/navtreeindex5.js index 4a9161030..2df165b5b 100644 --- a/main/navtreeindex5.js +++ b/main/navtreeindex5.js @@ -209,8 +209,8 @@ var NAVTREEINDEX5 = "group__VECTOR.html":[4,17,11], "group__VECTOR.html#a087153674e277a90cca2514f2546f6ff":[4,17,11,3,29], "group__VECTOR.html#a0cf4ee1df7aec0d5f2905d1a2f1c3d28":[4,17,11,2,18], -"group__VECTOR.html#a0eaec44b13944292e497206dd4476dbc":[4,17,11,4,13], "group__VECTOR.html#a0eaec44b13944292e497206dd4476dbc":[4,17,11,3,12], +"group__VECTOR.html#a0eaec44b13944292e497206dd4476dbc":[4,17,11,4,13], "group__VECTOR.html#a10bee8e440eddae43f3f16feacce8fba":[4,17,11,1,17], "group__VECTOR.html#a10bee8e440eddae43f3f16feacce8fba":[4,17,11,2,17], "group__VECTOR.html#a18bbd0abdc05921450bf9524e76eacc8":[4,17,11,3,1], @@ -224,30 +224,30 @@ var NAVTREEINDEX5 = "group__VECTOR.html#a3032b42481d346a92824003deb46829d":[4,17,11,4,12], "group__VECTOR.html#a3032b42481d346a92824003deb46829d":[4,17,11,3,11], "group__VECTOR.html#a308c13b7bc9aa9f3732d8e9af5e35894":[4,17,11,0,1], -"group__VECTOR.html#a3168a6a643e3afcce88e4d1e2a933771":[4,17,11,1,5], "group__VECTOR.html#a3168a6a643e3afcce88e4d1e2a933771":[4,17,11,2,5], +"group__VECTOR.html#a3168a6a643e3afcce88e4d1e2a933771":[4,17,11,1,5], "group__VECTOR.html#a33e22ce44cb5b57038a5ce6f9d21870d":[4,17,11,4,0], "group__VECTOR.html#a33e22ce44cb5b57038a5ce6f9d21870d":[4,17,11,3,0], "group__VECTOR.html#a38679461ba64e2b1d915f057efcf8f08":[4,17,11,0,15], "group__VECTOR.html#a3b54ceaeeebb31461d63a482309f46f7":[4,17,11,0,10], -"group__VECTOR.html#a4113e345cd4d427d0360498432bf5420":[4,17,11,4,15], "group__VECTOR.html#a4113e345cd4d427d0360498432bf5420":[4,17,11,3,14], -"group__VECTOR.html#a42074bf749c737e1fc411977736c52cc":[4,17,11,3,13], +"group__VECTOR.html#a4113e345cd4d427d0360498432bf5420":[4,17,11,4,15], "group__VECTOR.html#a42074bf749c737e1fc411977736c52cc":[4,17,11,4,14], +"group__VECTOR.html#a42074bf749c737e1fc411977736c52cc":[4,17,11,3,13], "group__VECTOR.html#a43234ee88400c3276c152f7a5b42f57e":[4,17,11,0,14], "group__VECTOR.html#a44636a8cdaef9cfb393a28fca068bedd":[4,17,11,4,22], "group__VECTOR.html#a447332a607788595a8c2fb744b86f782":[4,17,11,4,6], "group__VECTOR.html#a4482a7bf773a1eabd199f6a4894d56d2":[4,17,11,2,0], -"group__VECTOR.html#a4592e722e8afd24193e2f536f9ab21f2":[4,17,11,1,15], "group__VECTOR.html#a4592e722e8afd24193e2f536f9ab21f2":[4,17,11,2,15], +"group__VECTOR.html#a4592e722e8afd24193e2f536f9ab21f2":[4,17,11,1,15], "group__VECTOR.html#a4ae410ceb64a78882e37cde0a6d19cb2":[4,17,11,3,3], "group__VECTOR.html#a4df026156780bc0ca651c342b7d6daa4":[4,17,11,1,1], "group__VECTOR.html#a4fb45f9f4f1b5503c4e4b915eab01ea0":[4,17,11,4,31], -"group__VECTOR.html#a5003a86b9216aa119f58e27a42e06d06":[4,17,11,1,16], "group__VECTOR.html#a5003a86b9216aa119f58e27a42e06d06":[4,17,11,2,16], +"group__VECTOR.html#a5003a86b9216aa119f58e27a42e06d06":[4,17,11,1,16], "group__VECTOR.html#a500b283ce371c87d9aec23f034345ddf":[4,17,11,4,28], -"group__VECTOR.html#a516f4eb9bb0bc88ee4fc505625eed4bc":[4,17,11,3,16], "group__VECTOR.html#a516f4eb9bb0bc88ee4fc505625eed4bc":[4,17,11,4,17], +"group__VECTOR.html#a516f4eb9bb0bc88ee4fc505625eed4bc":[4,17,11,3,16], "group__VECTOR.html#a5999a20d9e9858000b888d4e5795f778":[4,17,11,4,32], "group__VECTOR.html#a657eb179035d6112e1006d82ad1b3c47":[4,17,11,4,21] }; diff --git a/main/navtreeindex6.js b/main/navtreeindex6.js index aa391b20e..0651acb0b 100644 --- a/main/navtreeindex6.js +++ b/main/navtreeindex6.js @@ -5,32 +5,32 @@ var NAVTREEINDEX6 = "group__VECTOR.html#a6984fed3efef899b24a2e8d3b9b2f85e":[4,17,11,3,30], "group__VECTOR.html#a6b450baffef776eef2b79ab3f9d572ed":[4,17,11,1,0], "group__VECTOR.html#a71f6867d6427a598ae03ccd5e5060661":[4,17,11,0,2], -"group__VECTOR.html#a7596f76f84de63fb97b8790c906955cd":[4,17,11,3,19], "group__VECTOR.html#a7596f76f84de63fb97b8790c906955cd":[4,17,11,4,20], -"group__VECTOR.html#a762e0a4e5b0ae1b1d0ed3ba4d03f2ed8":[4,17,11,3,6], +"group__VECTOR.html#a7596f76f84de63fb97b8790c906955cd":[4,17,11,3,19], "group__VECTOR.html#a762e0a4e5b0ae1b1d0ed3ba4d03f2ed8":[4,17,11,4,7], +"group__VECTOR.html#a762e0a4e5b0ae1b1d0ed3ba4d03f2ed8":[4,17,11,3,6], "group__VECTOR.html#a79810f2ce7bc276c6c9c7f5e60e73b0d":[4,17,11,1,2], -"group__VECTOR.html#a80ffce01515364c42c33805d7e287157":[4,17,11,3,18], "group__VECTOR.html#a80ffce01515364c42c33805d7e287157":[4,17,11,4,19], +"group__VECTOR.html#a80ffce01515364c42c33805d7e287157":[4,17,11,3,18], "group__VECTOR.html#a8677ae944080956113c3329280b224d2":[4,17,11,4,1], -"group__VECTOR.html#a87d103b353abd756454367af97d98805":[4,17,11,3,26], "group__VECTOR.html#a87d103b353abd756454367af97d98805":[4,17,11,0,11], -"group__VECTOR.html#a8c96bda91c2818ac500e643a08fd5430":[4,17,11,3,27], +"group__VECTOR.html#a87d103b353abd756454367af97d98805":[4,17,11,3,26], "group__VECTOR.html#a8c96bda91c2818ac500e643a08fd5430":[4,17,11,0,12], -"group__VECTOR.html#a903756c65eb56be2c0b3164f0cdb003c":[4,17,11,1,12], +"group__VECTOR.html#a8c96bda91c2818ac500e643a08fd5430":[4,17,11,3,27], "group__VECTOR.html#a903756c65eb56be2c0b3164f0cdb003c":[4,17,11,2,12], +"group__VECTOR.html#a903756c65eb56be2c0b3164f0cdb003c":[4,17,11,1,12], "group__VECTOR.html#a905e2625e82c47e21513c376bc3c6794":[4,17,11,1,9], "group__VECTOR.html#a905e2625e82c47e21513c376bc3c6794":[4,17,11,2,9], -"group__VECTOR.html#a91c39135884328da7486f8d9e28adace":[4,17,11,2,8], "group__VECTOR.html#a91c39135884328da7486f8d9e28adace":[4,17,11,1,8], +"group__VECTOR.html#a91c39135884328da7486f8d9e28adace":[4,17,11,2,8], "group__VECTOR.html#a97b012af38344d285c72d91cb6499864":[4,17,11,1,6], "group__VECTOR.html#a97b012af38344d285c72d91cb6499864":[4,17,11,2,6], "group__VECTOR.html#a9a7f45e7718b40e30bfac225508f0786":[4,17,11,1,4], -"group__VECTOR.html#a9baf1b5602df556c6ab8216dcb083c08":[4,17,11,3,23], "group__VECTOR.html#a9baf1b5602df556c6ab8216dcb083c08":[4,17,11,4,24], +"group__VECTOR.html#a9baf1b5602df556c6ab8216dcb083c08":[4,17,11,3,23], "group__VECTOR.html#aa40f983747f08a35ea85f91d45059336":[4,17,11,4,25], -"group__VECTOR.html#aa63047b307b33da942eb902708cae266":[4,17,11,2,11], "group__VECTOR.html#aa63047b307b33da942eb902708cae266":[4,17,11,1,11], +"group__VECTOR.html#aa63047b307b33da942eb902708cae266":[4,17,11,2,11], "group__VECTOR.html#aa90c47d4ec435070031d2e55e034d29d":[4,17,11,1,3], "group__VECTOR.html#aa90c47d4ec435070031d2e55e034d29d":[4,17,11,2,2], "group__VECTOR.html#aa9edeec13db8d69f0eeec9129211b3f6":[4,17,11,3,20], @@ -41,12 +41,12 @@ var NAVTREEINDEX6 = "group__VECTOR.html#aafd64c288bfb44f6bb00f7ae90fe8ea2":[4,17,11,4,16], "group__VECTOR.html#ab219c25c76f5bb3617321a0054c7f3ab":[4,17,11,4,18], "group__VECTOR.html#ab219c25c76f5bb3617321a0054c7f3ab":[4,17,11,3,17], -"group__VECTOR.html#ab85fe400b7c78faa660fc7eec19e757c":[4,17,11,3,9], "group__VECTOR.html#ab85fe400b7c78faa660fc7eec19e757c":[4,17,11,4,10], -"group__VECTOR.html#abd66203eea21ed5c6d7a6d0bc52751ba":[4,17,11,1,13], +"group__VECTOR.html#ab85fe400b7c78faa660fc7eec19e757c":[4,17,11,3,9], "group__VECTOR.html#abd66203eea21ed5c6d7a6d0bc52751ba":[4,17,11,2,13], -"group__VECTOR.html#abdddb35a1ae77496e61bc38c1903d2ed":[4,17,11,3,4], +"group__VECTOR.html#abd66203eea21ed5c6d7a6d0bc52751ba":[4,17,11,1,13], "group__VECTOR.html#abdddb35a1ae77496e61bc38c1903d2ed":[4,17,11,4,4], +"group__VECTOR.html#abdddb35a1ae77496e61bc38c1903d2ed":[4,17,11,3,4], "group__VECTOR.html#ac323bdbe0079315646ec62a2c10f8041":[4,17,11,1,7], "group__VECTOR.html#ac323bdbe0079315646ec62a2c10f8041":[4,17,11,2,7], "group__VECTOR.html#ac4e558184c300cabdfd34bf9c52c1864":[4,17,11,4,29], @@ -56,8 +56,8 @@ var NAVTREEINDEX6 = "group__VECTOR.html#acffdf9ec8be8937572a102f9eedd567c":[4,17,11,3,10], "group__VECTOR.html#ad1bd8280fec0db42c50492373ae7c6b4":[4,17,11,0,0], "group__VECTOR.html#ad2de869aa192fef5d011f854b7734a2f":[4,17,11,0,3], -"group__VECTOR.html#ad62d481db7f40d0856f327ac78cbb69f":[4,17,11,3,22], "group__VECTOR.html#ad62d481db7f40d0856f327ac78cbb69f":[4,17,11,4,23], +"group__VECTOR.html#ad62d481db7f40d0856f327ac78cbb69f":[4,17,11,3,22], "group__VECTOR.html#ade7cf34a619c49dc0dbc8bb1e155b411":[4,17,11,4,8], "group__VECTOR.html#ade7cf34a619c49dc0dbc8bb1e155b411":[4,17,11,3,7], "group__VECTOR.html#ae14b3d1ebd2e188230eab92ea5aa55d6":[4,17,11,2,3], @@ -67,12 +67,12 @@ var NAVTREEINDEX6 = "group__VECTOR.html#aef42fab2ae1dc05032eb31d353701f19":[4,17,11,0,4], "group__VECTOR.html#af12a57ecdc5aa7459bbe2f4e2b723a6c":[4,17,11,0,9], "group__VECTOR.html#af12e3260213f5a5d86de52ff7ea659d1":[4,17,11,0,7], -"group__VECTOR.html#af2c51a1ca28b1c0c68aa24cbbda8d091":[4,17,11,4,9], "group__VECTOR.html#af2c51a1ca28b1c0c68aa24cbbda8d091":[4,17,11,3,8], "group__VECTOR.html#af2c51a1ca28b1c0c68aa24cbbda8d091":[4,17,11,0,6], +"group__VECTOR.html#af2c51a1ca28b1c0c68aa24cbbda8d091":[4,17,11,4,9], "group__VECTOR.html#af371d21a183d0dafec200e4b24fec075":[4,17,11,0,8], -"group__VECTOR.html#af9e4c354287de5e3b87cbed6a4d60bff":[4,17,11,3,5], "group__VECTOR.html#af9e4c354287de5e3b87cbed6a4d60bff":[4,17,11,4,5], +"group__VECTOR.html#af9e4c354287de5e3b87cbed6a4d60bff":[4,17,11,3,5], "group__VECTOR.html#afb84f4725777a614c27f1b08ae64a355":[4,17,11,4,26], "group__VECTOR.html#afd2c091ec1be8fee50e7b1d61aa01d4d":[4,17,11,3,24], "group__VECTOR.html#ga08ae6fb2269105971a54d7c9b235d2c0":[4,17,11,6], diff --git a/main/navtreeindex7.js b/main/navtreeindex7.js index 5b6105825..ed7451f7b 100644 --- a/main/navtreeindex7.js +++ b/main/navtreeindex7.js @@ -127,40 +127,41 @@ var NAVTREEINDEX7 = "group__vlog.html#ga35aac80d9cfc0b7b08382da2117772d1":[4,7,5,3], "group__vlog.html#ga6773e6b0b5448e0e409931b4119271dc":[4,7,5,2], "group__vlog.html#gad29d9e6edab1e2de5fcb1fc596758388":[4,7,5,0], -"group__weightedsum.html":[4,13,11], -"group__weightedsum.html#ga06e10e847786d8d96c5459fb36d5c752":[4,13,11,0], -"group__weightedsum.html#gaffef5e0e3e1d0289e419c23853e20850":[4,13,11,1], -"index.html":[], +"group__weightedaverage.html":[4,13,11], +"group__weightedaverage.html#ga5109e2a8b99632973843d86bd7ad851b":[4,13,11,0], +"group__weightedaverage.html#gacb3c3c0baca35abeb83b8cb3554046ab":[4,13,11,1], "index.html":[0], +"index.html":[], "index.html#autotoc_md0":[0,0], "index.html#autotoc_md1":[0,1], "index.html#autotoc_md2":[0,1,0], "index.html#autotoc_md3":[0,1,1], "index.html#autotoc_md4":[0,7], +"index.html#autotoc_md5":[0,8], "index.html#example":[0,3], -"index.html#license":[0,8], +"index.html#license":[0,9], "index.html#pack":[0,5], "index.html#preprocessor":[0,6], "index.html#toolchain":[0,4], "index.html#using":[0,2], "modules.html":[4], -"namespaceinner.html":[4,17,8,2,1,0], -"namespaceinner.html":[4,17,8,0,0,0], -"namespaceinner.html":[4,17,8,0,1,0], -"namespaceinner.html":[4,17,8,0,2], -"namespaceinner.html":[4,17,8,1,0,0], -"namespaceinner.html":[4,17,8,1,1,0], -"namespaceinner.html":[4,17,8,2,6,0], -"namespaceinner.html":[4,17,8,1,2,0], "namespaceinner.html":[4,17,8,2,5,0], -"namespaceinner.html":[4,17,8,2,4,0], -"namespaceinner.html":[4,17,8,2,3,0], -"namespaceinner.html":[4,17,8,1,3,0], -"namespaceinner.html":[4,17,8,2,2,0], -"namespaceinner.html":[4,17,8,1,4,0], +"namespaceinner.html":[4,17,8,0,1,0], +"namespaceinner.html":[4,17,8,2,0,0], +"namespaceinner.html":[4,17,8,2,1,0], "namespaceinner.html":[4,17,8,1,5], +"namespaceinner.html":[4,17,8,1,4,0], +"namespaceinner.html":[4,17,8,1,3,0], "namespaceinner.html":[4,17,8,2,7], -"namespaceinner.html":[4,17,8,2,0,0], +"namespaceinner.html":[4,17,8,2,6,0], +"namespaceinner.html":[4,17,8,2,2,0], +"namespaceinner.html":[4,17,8,2,3,0], +"namespaceinner.html":[4,17,8,2,4,0], +"namespaceinner.html":[4,17,8,1,2,0], +"namespaceinner.html":[4,17,8,1,1,0], +"namespaceinner.html":[4,17,8,1,0,0], +"namespaceinner.html":[4,17,8,0,2], +"namespaceinner.html":[4,17,8,0,0,0], "pages.html":[], "rev_hist.html":[2], "structarm__bilinear__interp__instance__f16.html":[5,0,9], @@ -248,6 +249,5 @@ var NAVTREEINDEX7 = "structarm__cfft__instance__q15.html#ab8db3bbe7c61e6bb8ca2a55e3446e11a":[5,0,27,1], "structarm__cfft__instance__q31.html":[5,0,28], "structarm__cfft__instance__q31.html#a3b229432d381b0a511a9cdbe3aa74e78":[5,0,28,2], -"structarm__cfft__instance__q31.html#a65e1b3e327b8fab9404287ed8f347cc8":[5,0,28,0], -"structarm__cfft__instance__q31.html#a9760c603af5d85652496dbffd63a8a2e":[5,0,28,3] +"structarm__cfft__instance__q31.html#a65e1b3e327b8fab9404287ed8f347cc8":[5,0,28,0] }; diff --git a/main/navtreeindex8.js b/main/navtreeindex8.js index 35e42a55b..09e6bde77 100644 --- a/main/navtreeindex8.js +++ b/main/navtreeindex8.js @@ -1,5 +1,6 @@ var NAVTREEINDEX8 = { +"structarm__cfft__instance__q31.html#a9760c603af5d85652496dbffd63a8a2e":[5,0,28,3], "structarm__cfft__instance__q31.html#ab8db3bbe7c61e6bb8ca2a55e3446e11a":[5,0,28,1], "structarm__cfft__radix2__instance__f16.html":[5,0,29], "structarm__cfft__radix2__instance__f16.html#a09a221a818c6d0e064557a99e2fe9a8b":[5,0,29,0], @@ -248,6 +249,5 @@ var NAVTREEINDEX8 = "structarm__lms__instance__q31.html#a751941891e47f522a7f5375fe8990aac":[5,0,69,1], "structarm__lms__instance__q31.html#aa2cacddfc5e1d86905d7d31a18b1979b":[5,0,69,3], "structarm__lms__instance__q31.html#adee4ba3ee8869865af7d8fa08ca913d6":[5,0,69,4], -"structarm__lms__norm__instance__f32.html":[5,0,70], -"structarm__lms__norm__instance__f32.html#a11402afa7c9b9dac4cb953fa386e74d2":[5,0,70,1] +"structarm__lms__norm__instance__f32.html":[5,0,70] }; diff --git a/main/navtreeindex9.js b/main/navtreeindex9.js index a215ec775..7cc55a381 100644 --- a/main/navtreeindex9.js +++ b/main/navtreeindex9.js @@ -1,5 +1,6 @@ var NAVTREEINDEX9 = { +"structarm__lms__norm__instance__f32.html#a11402afa7c9b9dac4cb953fa386e74d2":[5,0,70,1], "structarm__lms__norm__instance__f32.html#a335c87e6fdc4b96601d95a5de8b9c463":[5,0,70,4], "structarm__lms__norm__instance__f32.html#a751941891e47f522a7f5375fe8990aac":[5,0,70,2], "structarm__lms__norm__instance__f32.html#aacbb8dd8eeba4b21fc2bb40076405ee3":[5,0,70,3], diff --git a/main/search/all_1.js b/main/search/all_1.js index 2b1082081..99cfabdde 100644 --- a/main/search/all_1.js +++ b/main/search/all_1.js @@ -863,8 +863,8 @@ var searchData= ['arm_5fvlog_5ff32_860',['arm_vlog_f32',['../group__vlog.html#ga1a97d95af11d143b26334c8ff278443e',1,'arm_vlog_f32(const float32_t *pSrc, float32_t *pDst, uint32_t blockSize): arm_vlog_f32.c'],['../group__vlog.html#ga1a97d95af11d143b26334c8ff278443e',1,'arm_vlog_f32(const float32_t *pSrc, float32_t *pDst, uint32_t blockSize): arm_vlog_f32.c']]], ['arm_5fvlog_5fq15_861',['arm_vlog_q15',['../group__vlog.html#ga6773e6b0b5448e0e409931b4119271dc',1,'arm_vlog_q15(const q15_t *pSrc, q15_t *pDst, uint32_t blockSize): arm_vlog_q15.c'],['../group__vlog.html#ga6773e6b0b5448e0e409931b4119271dc',1,'arm_vlog_q15(const q15_t *pSrc, q15_t *pDst, uint32_t blockSize): arm_vlog_q15.c']]], ['arm_5fvlog_5fq31_862',['arm_vlog_q31',['../group__vlog.html#ga35aac80d9cfc0b7b08382da2117772d1',1,'arm_vlog_q31(const q31_t *pSrc, q31_t *pDst, uint32_t blockSize): arm_vlog_q31.c'],['../group__vlog.html#ga35aac80d9cfc0b7b08382da2117772d1',1,'arm_vlog_q31(const q31_t *pSrc, q31_t *pDst, uint32_t blockSize): arm_vlog_q31.c']]], - ['arm_5fweighted_5fsum_5ff16_863',['arm_weighted_sum_f16',['../group__weightedsum.html#ga06e10e847786d8d96c5459fb36d5c752',1,'arm_weighted_sum_f16(const float16_t *in, const float16_t *weigths, uint32_t blockSize): arm_weighted_sum_f16.c'],['../group__weightedsum.html#ga06e10e847786d8d96c5459fb36d5c752',1,'arm_weighted_sum_f16(const float16_t *in, const float16_t *weigths, uint32_t blockSize): arm_weighted_sum_f16.c']]], - ['arm_5fweighted_5fsum_5ff32_864',['arm_weighted_sum_f32',['../group__weightedsum.html#gaffef5e0e3e1d0289e419c23853e20850',1,'arm_weighted_sum_f32(const float32_t *in, const float32_t *weigths, uint32_t blockSize): arm_weighted_sum_f32.c'],['../group__weightedsum.html#gaffef5e0e3e1d0289e419c23853e20850',1,'arm_weighted_sum_f32(const float32_t *in, const float32_t *weigths, uint32_t blockSize): arm_weighted_sum_f32.c']]], + ['arm_5fweighted_5faverage_5ff16_863',['arm_weighted_average_f16',['../group__weightedaverage.html#ga5109e2a8b99632973843d86bd7ad851b',1,'arm_weighted_average_f16(const float16_t *in, const float16_t *weigths, uint32_t blockSize): arm_weighted_average_f16.c'],['../group__weightedaverage.html#ga5109e2a8b99632973843d86bd7ad851b',1,'arm_weighted_average_f16(const float16_t *in, const float16_t *weigths, uint32_t blockSize): arm_weighted_average_f16.c']]], + ['arm_5fweighted_5faverage_5ff32_864',['arm_weighted_average_f32',['../group__weightedaverage.html#gacb3c3c0baca35abeb83b8cb3554046ab',1,'arm_weighted_average_f32(const float32_t *in, const float32_t *weigths, uint32_t blockSize): arm_weighted_average_f32.c'],['../group__weightedaverage.html#gacb3c3c0baca35abeb83b8cb3554046ab',1,'arm_weighted_average_f32(const float32_t *in, const float32_t *weigths, uint32_t blockSize): arm_weighted_average_f32.c']]], ['arm_5fwelch_5ff32_865',['arm_welch_f32',['../group__WindowWELCH.html#gab2f914fee61a530dd871ad48c4c82ba6',1,'arm_welch_f32(float32_t *pDst, uint32_t blockSize): arm_welch_f32.c'],['../group__WindowWELCH.html#gab2f914fee61a530dd871ad48c4c82ba6',1,'arm_welch_f32(float32_t *pDst, uint32_t blockSize): arm_welch_f32.c']]], ['arm_5fwelch_5ff64_866',['arm_welch_f64',['../group__WindowWELCH.html#ga3c960052a7ab472dcbbf2ae101851675',1,'arm_welch_f64(float64_t *pDst, uint32_t blockSize): arm_welch_f64.c'],['../group__WindowWELCH.html#ga3c960052a7ab472dcbbf2ae101851675',1,'arm_welch_f64(float64_t *pDst, uint32_t blockSize): arm_welch_f64.c']]], ['arm_5fxor_5fu16_867',['arm_xor_u16',['../group__Xor.html#ga5048ed05ab7821cdb5118d7c410c6db7',1,'arm_xor_u16(const uint16_t *pSrcA, const uint16_t *pSrcB, uint16_t *pDst, uint32_t blockSize): arm_xor_u16.c'],['../group__Xor.html#ga5048ed05ab7821cdb5118d7c410c6db7',1,'arm_xor_u16(const uint16_t *pSrcA, const uint16_t *pSrcB, uint16_t *pDst, uint32_t blockSize): arm_xor_u16.c']]], diff --git a/main/search/all_17.js b/main/search/all_17.js index 5a35096ac..5188162a8 100644 --- a/main/search/all_17.js +++ b/main/search/all_17.js @@ -1,6 +1,6 @@ var searchData= [ - ['weighted_20sum_0',['Weighted Sum',['../group__weightedsum.html',1,'']]], + ['weighted_20average_0',['Weighted Average',['../group__weightedaverage.html',1,'']]], ['weights_5f128_1',['Weights_128',['../group__DCT4__IDCT4__Table.html#gad00f29d896d64d6da7afbbb9d3e182a4',1,'Weights_128(): arm_common_tables.c'],['../group__DCT4__IDCT4__Table.html#gad00f29d896d64d6da7afbbb9d3e182a4',1,'Weights_128(): arm_common_tables.c']]], ['weightsq15_5f128_2',['WeightsQ15_128',['../group__DCT4__IDCT4__Table.html#ga8e8f0253c5a4337bd90968838db6164d',1,'WeightsQ15_128(): arm_common_tables.c'],['../group__DCT4__IDCT4__Table.html#ga8e8f0253c5a4337bd90968838db6164d',1,'WeightsQ15_128(): arm_common_tables.c']]], ['weightsq31_5f128_3',['WeightsQ31_128',['../group__DCT4__IDCT4__Table.html#ga02d7024538a87214296b01d83ba36b02',1,'WeightsQ31_128(): arm_common_tables.c'],['../group__DCT4__IDCT4__Table.html#ga02d7024538a87214296b01d83ba36b02',1,'WeightsQ31_128(): arm_common_tables.c']]], diff --git a/main/search/functions_1.js b/main/search/functions_1.js index 4787d2627..53c782090 100644 --- a/main/search/functions_1.js +++ b/main/search/functions_1.js @@ -742,8 +742,8 @@ var searchData= ['arm_5fvlog_5ff32_739',['arm_vlog_f32',['../group__vlog.html#ga1a97d95af11d143b26334c8ff278443e',1,'arm_vlog_f32(const float32_t *pSrc, float32_t *pDst, uint32_t blockSize): arm_vlog_f32.c'],['../group__vlog.html#ga1a97d95af11d143b26334c8ff278443e',1,'arm_vlog_f32(const float32_t *pSrc, float32_t *pDst, uint32_t blockSize): arm_vlog_f32.c']]], ['arm_5fvlog_5fq15_740',['arm_vlog_q15',['../group__vlog.html#ga6773e6b0b5448e0e409931b4119271dc',1,'arm_vlog_q15(const q15_t *pSrc, q15_t *pDst, uint32_t blockSize): arm_vlog_q15.c'],['../group__vlog.html#ga6773e6b0b5448e0e409931b4119271dc',1,'arm_vlog_q15(const q15_t *pSrc, q15_t *pDst, uint32_t blockSize): arm_vlog_q15.c']]], ['arm_5fvlog_5fq31_741',['arm_vlog_q31',['../group__vlog.html#ga35aac80d9cfc0b7b08382da2117772d1',1,'arm_vlog_q31(const q31_t *pSrc, q31_t *pDst, uint32_t blockSize): arm_vlog_q31.c'],['../group__vlog.html#ga35aac80d9cfc0b7b08382da2117772d1',1,'arm_vlog_q31(const q31_t *pSrc, q31_t *pDst, uint32_t blockSize): arm_vlog_q31.c']]], - ['arm_5fweighted_5fsum_5ff16_742',['arm_weighted_sum_f16',['../group__weightedsum.html#ga06e10e847786d8d96c5459fb36d5c752',1,'arm_weighted_sum_f16(const float16_t *in, const float16_t *weigths, uint32_t blockSize): arm_weighted_sum_f16.c'],['../group__weightedsum.html#ga06e10e847786d8d96c5459fb36d5c752',1,'arm_weighted_sum_f16(const float16_t *in, const float16_t *weigths, uint32_t blockSize): arm_weighted_sum_f16.c']]], - ['arm_5fweighted_5fsum_5ff32_743',['arm_weighted_sum_f32',['../group__weightedsum.html#gaffef5e0e3e1d0289e419c23853e20850',1,'arm_weighted_sum_f32(const float32_t *in, const float32_t *weigths, uint32_t blockSize): arm_weighted_sum_f32.c'],['../group__weightedsum.html#gaffef5e0e3e1d0289e419c23853e20850',1,'arm_weighted_sum_f32(const float32_t *in, const float32_t *weigths, uint32_t blockSize): arm_weighted_sum_f32.c']]], + ['arm_5fweighted_5faverage_5ff16_742',['arm_weighted_average_f16',['../group__weightedaverage.html#ga5109e2a8b99632973843d86bd7ad851b',1,'arm_weighted_average_f16(const float16_t *in, const float16_t *weigths, uint32_t blockSize): arm_weighted_average_f16.c'],['../group__weightedaverage.html#ga5109e2a8b99632973843d86bd7ad851b',1,'arm_weighted_average_f16(const float16_t *in, const float16_t *weigths, uint32_t blockSize): arm_weighted_average_f16.c']]], + ['arm_5fweighted_5faverage_5ff32_743',['arm_weighted_average_f32',['../group__weightedaverage.html#gacb3c3c0baca35abeb83b8cb3554046ab',1,'arm_weighted_average_f32(const float32_t *in, const float32_t *weigths, uint32_t blockSize): arm_weighted_average_f32.c'],['../group__weightedaverage.html#gacb3c3c0baca35abeb83b8cb3554046ab',1,'arm_weighted_average_f32(const float32_t *in, const float32_t *weigths, uint32_t blockSize): arm_weighted_average_f32.c']]], ['arm_5fwelch_5ff32_744',['arm_welch_f32',['../group__WindowWELCH.html#gab2f914fee61a530dd871ad48c4c82ba6',1,'arm_welch_f32(float32_t *pDst, uint32_t blockSize): arm_welch_f32.c'],['../group__WindowWELCH.html#gab2f914fee61a530dd871ad48c4c82ba6',1,'arm_welch_f32(float32_t *pDst, uint32_t blockSize): arm_welch_f32.c']]], ['arm_5fwelch_5ff64_745',['arm_welch_f64',['../group__WindowWELCH.html#ga3c960052a7ab472dcbbf2ae101851675',1,'arm_welch_f64(float64_t *pDst, uint32_t blockSize): arm_welch_f64.c'],['../group__WindowWELCH.html#ga3c960052a7ab472dcbbf2ae101851675',1,'arm_welch_f64(float64_t *pDst, uint32_t blockSize): arm_welch_f64.c']]], ['arm_5fxor_5fu16_746',['arm_xor_u16',['../group__Xor.html#ga5048ed05ab7821cdb5118d7c410c6db7',1,'arm_xor_u16(const uint16_t *pSrcA, const uint16_t *pSrcB, uint16_t *pDst, uint32_t blockSize): arm_xor_u16.c'],['../group__Xor.html#ga5048ed05ab7821cdb5118d7c410c6db7',1,'arm_xor_u16(const uint16_t *pSrcA, const uint16_t *pSrcB, uint16_t *pDst, uint32_t blockSize): arm_xor_u16.c']]], diff --git a/main/search/groups_15.js b/main/search/groups_15.js index c00dc53c5..d74ef7762 100644 --- a/main/search/groups_15.js +++ b/main/search/groups_15.js @@ -1,6 +1,6 @@ var searchData= [ - ['weighted_20sum_0',['Weighted Sum',['../group__weightedsum.html',1,'']]], + ['weighted_20average_0',['Weighted Average',['../group__weightedaverage.html',1,'']]], ['welch_20window_20function_20_2821_2e3_20db_29_1',['Welch window function (21.3 dB)',['../group__WindowWELCH.html',1,'']]], ['window_20functions_2',['Window Functions',['../group__groupWindow.html',1,'']]] ]; diff --git a/version.js b/version.js index 5bb5af488..8d1754502 100644 --- a/version.js +++ b/version.js @@ -1,6 +1,6 @@ //--- list of versions --- const versions = { - "main": "1.15.1-dev65", + "main": "1.15.1-dev67", "latest": "1.15.0", "v1.14.4": "1.14.4", "v1.14.3": "1.14.3",