Can I run matlab on a raspberry pi?

I developed a system using Matlab signal processing technology. I want to use raspberry pi for this system.

In this link , they say that the tools Octave, Scilab, FreeMat can be used to replace pc raspberry pi.

Can I use these tools to run signal processing algorithms?

+4
source share
3 answers

Matlab / Simulink cannot run m-code directly on raspberries, but you can run Simulink models using the raspberry support package for simulink. This includes Matlab S-Functions that contain m Code.

:

  • simulink, . , , .

  • , io . .

  • . , .

+3

Another option is to use the MATLAB encoder or MATLAB Embedded Coder to generate C code from MATLAB code. Note that only a subset of the MATLAB language supports code generation. Then this code can be compiled and run on Raspberry Pi.

+1
source

Source: https://habr.com/ru/post/1613074/


All Articles