Da Vinci Firmware 1
Firmware for the DaVinci-M rocket avionics board.
Loading...
Searching...
No Matches
mtimes.h
Go to the documentation of this file.
1
19#ifndef MTIMES_H
20#define MTIMES_H
21
22/* Include Files */
23#include "rtwtypes.h"
24#include <stddef.h>
25#include <stdlib.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31/* Function Declarations */
46int mtimes(const double A_data[], const int A_size[2], const double B_data[],
47 double C_data[]);
48
49#ifdef __cplusplus
50}
51#endif
52
53#endif
54/*
55 * File trailer for mtimes.h
56 *
57 * [EOF]
58 */
int mtimes(const double A_data[], const int A_size[2], const double B_data[], double C_data[])
Performs matrix multiplication: C = A * B.
Definition mtimes.c:23
Defines standard data types for code generated by MATLAB Coder.