이 번역 페이지는 최신 내용을 담고 있지 않습니다. 최신 내용을 영문으로 보려면 여기를 클릭하십시오.
Python 클라이언트 프로그래밍
Python®에서 클라이언트 프로그램 만들기
MATLAB® Production Server™ Python 클라이언트 API를 통해 개발자는 원격 서버에서 MATLAB 함수를 실행할 수 있습니다. 이 API를 사용하면 네이티브 Python 유형을 사용하여 스칼라 값을 MATLAB 함수로 전달할 수 있습니다. 배열로 작업할 때는 matlab
패키지에 제공되는 MATLAB 배열 유형을 사용해야 합니다. Python에서 MATLAB 배열을 사용하는 방법에 대한 자세한 내용은 matlab Python Module 항목을 참조하십시오.
클라이언트 프로그램을 만드는 방법에 대한 개요는 Create a MATLAB Production Server Python Client 항목을 참조하십시오.
클라이언트 구현의 전체 예제를 보려면 Python 클라이언트 만들기 항목을 참조하십시오.
참고
R2022b부터 Python 클라이언트 라이브러리는 더 이상 Python 2.7을 지원하지 않습니다.
클래스
matlab.production_server.client.MWHttpClient | Python object encapsulating a connection to a MATLAB Production Server instance |
도움말 항목
애플리케이션 만들기
- Create a MATLAB Production Server Python Client
Call a MATLAB function deployed to MATLAB Production Server from a Python application. - Install the MATLAB Production Server Python Client
Install the packages required to use the Python client. - Python 클라이언트 만들기
Python 애플리케이션에서 MATLAB Production Server로 배포된 MATLAB 함수를 호출하는 방법을 알아봅니다. - Create Client Connection
Create a connection from a Python client to a MATLAB Production Server instance. - Invoke Packaged MATLAB Functions
Ways to call a deployed MATLAB function using the Python client API.
데이터 변환
- Pass Data Between MATLAB Production Server and Python
Learn how MATLAB Production Server converts data between Python and MATLAB data types. - matlab Python Module
Use thematlab
Python module to create MATLAB numeric types as Python variables. You can use these classes to pass MATLAB arrays between Python and MATLAB. - Use MATLAB Arrays in Python
This example shows how to use MATLAB arrays in Python.
문제 해결
- Handle Function Processing Errors
Catch and process errors that the server returns.