Is that possible to run MatLab runtime on Azure Function?
Mostrar comentarios más antiguos
Since I want to build IoT with Azure, and I need to Matlab to compute and analyse data from IoT, I want the computation on Azure, and output to Cosmos DB. What is best way to implement it? Any ideas guys?
3 comentarios
Walter Roberson
el 21 de Mayo de 2019
It is possible to run matlab on Azure
Azure supports a variety of virtual operating systems. However it looks to me as if the "reference architectures" available are for one of the Linux distributions. Effectively that one is the best debugged and already configured, which is work you would need to do yourself if you went for Windows
https://www.mathworks.com/cloud/azure.html
This makes a practical difference because matlab Compiler has to be used on the same operating system class as the code is going to execute on.
Yinhe Zhu
el 24 de Mayo de 2019
Walter Roberson
el 24 de Mayo de 2019
If you are starting one process and it is continually running and processing one stream at a time, then you amoratize startup costs, and any of those would be fine.
However, if you are starting up a number of different processes, perhaps one per stream, then startup time can start to become important, and in that case MATLAB Production Server would tend to become what you would want.
If the data is being sent via UDP, then even though in theory you could have one server for all clients (provided you could process the data quickly enough), in practice MATLAB udp() does the equivalent of a bind() operation: you cannot easily listen for all UDP packets addressed to the socket, you need to create a connection that listens to a particular endpoint. That makes MATLAB less than ideal for high-volume low-dwell updates.
Respuesta aceptada
Más respuestas (1)
Tim Choo
el 1 de Mayo de 2020
0 votos
In addition to the cloud reference architecture, MATLAB Production Server is also available from the Microsoft Azure Marketplace: https://azuremarketplace.microsoft.com/en-us/marketplace/apps/mathworks-inc.matlabprodserver-byol?tab=Overview
Categorías
Más información sobre Licensing on Cloud Platforms en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
