Is that possible to run MatLab runtime on Azure Function?
이전 댓글 표시
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
Walter Roberson
2019년 5월 21일
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
2019년 5월 24일
Walter Roberson
2019년 5월 24일
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.
채택된 답변
추가 답변 (1개)
Tim Choo
2020년 5월 1일
0 개 추천
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
카테고리
도움말 센터 및 File Exchange에서 Licensing on Cloud Platforms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
