MATPOWER AND COMPILER SDK

2 Ansichten (letzte 30 Tage)
john sebastian guerrero pinto
Beantwortet: Pratyush am 23 Mai 2024
I want to know if i can package my program wich uses MATPOWER (this is another package) to be use with Matlab Production Server and making HTTP request

Antworten (1)

Pratyush
Pratyush am 23 Mai 2024
Hi john,
To package and deploy a program using MATPOWER for use with MATLAB Production Server to handle HTTP requests, follow these summarized steps:
1. Ensure Compatibility: Verify that your program and MATPOWER work correctly in MATLAB, as this ensures compatibility with MATLAB Production Server.
2. Package Your Application:
- Create a main MATLAB function as an entry point.
- Use MATLAB Compiler SDK (`mcc` command) to compile your application along with MATPOWER into a deployable archive (.ctf file).
- Test the compiled application locally to ensure it behaves as expected.
3. Deploy to MATLAB Production Server:
- Set up your MATLAB Production Server if not already done.
- Deploy your compiled application (.ctf file) to the server.
4. Making HTTP Requests:
- Prepare and send HTTP POST requests to your MATLAB Production Server instance, pointing to your application, with inputs formatted as JSON.
- Process the response from the server, which contains the output of your MATLAB function.
Note - Check MATPOWER compatibility with MATLAB Compiler, ensuring there are no unsupported operations or functions.
This process allows you to access and run your MATPOWER-based MATLAB application via HTTP requests to the MATLAB Production Server.

Kategorien

Mehr zu Enterprise Deployment with MATLAB Production Server finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by