How to create stub/services files with MATLAB grpc plugin?

Solution 1:

protobuf-matlab is just a protobuf plugin - it generates code to read/write protocol buffer.

Unfortunately it does not implement a gRPC plugin which would build the client stub and server.

If you are able to call your matlab code from another language, you could host the gRPC server externally, e.g. create a gRPC server in dotnet and use COM to call your matlab code.