We have moved our DataAccess logic to Microservice and it is currently implemented as gRPC with C++ and we are able to utilize that in C# client and C++ client. Now we have to make use of this DataAccess grpc in Matlab client(legacy). So, i’m trying to find a way to access gRPC from Matlab and found tha…
Tag: matlab
Enable/Disable uitabs in MATLAB
I’m using uitab group in matlab in my GUI. However one limitation of the UItabgroup is absence of enable/disable feature.I tried to use other alternative by using a function from the matlab communnity findjObject I use the following way to do that using the above function. and I get the following error …
Matlab filtfilt() function implementation in Java
Has anyone tried implementing matlab’s filtfilt() function in Java (or at least in C++)? If you guys have an algorithm, that would be of great help. Answer Here is my implementation in C++ of the filtfilt algorithm as implemented in MATLAB. Hope this helps you.