![]() |
Da Vinci Firmware 1
Firmware for the DaVinci-M rocket avionics board.
|

Go to the source code of this file.
Functions | |
| int | b_eml_find (const boolean_T x[5], int i_data[]) |
Finds the index of the last true element in a 5-element boolean array. | |
| int | eml_find (const boolean_T x[6], int i_data[]) |
Finds the index of the last true element in a 6-element boolean array. | |
| int b_eml_find | ( | const boolean_T | x[5], |
| int | i_data[] | ||
| ) |
Finds the index of the last true element in a 5-element boolean array.
| [in] | x | The 5-element boolean input array to search. |
| [out] | i_data | An output array where the found index will be stored. The index is 1-based, matching MATLAB's convention. |
Definition at line 21 of file find.c.
Referenced by cdEvaluation().

| int eml_find | ( | const boolean_T | x[6], |
| int | i_data[] | ||
| ) |
Finds the index of the last true element in a 6-element boolean array.
| [in] | x | The 6-element boolean input array to search. |
| [out] | i_data | An output array where the found index will be stored. The index is 1-based, matching MATLAB's convention. |
Definition at line 51 of file find.c.
Referenced by cdEvaluation().
