Community Profile

photo

Shrinidhi KR


Last seen: ongeveer 2 jaar ago Active since 2020

Followers: 0   Following: 0

Statistics

  • Knowledgeable Level 2
  • Revival Level 3
  • First Answer

View badges

Feeds

View by

Answered
How can I use python3 to get text information from MATLAB ocr ?
I tried an OCR example as mentioned here. You can modify the code and try it like this: import matlab.engine eng = matlab.engi...

bijna 4 jaar ago | 0

| accepted

Answered
How can I call a python function which imports cvxopt in Matlab in Windows?
There seems to be an issue with the python cvxopt library itself and the issues is not arising from matlab end. As it gives erro...

bijna 4 jaar ago | 0

Answered
call matlab function from python but the argument is always mismatch
You can just call it and specify the parameters directly, it worked for me. import matlab.engine eng = matlab.engine.start_mat...

bijna 4 jaar ago | 0

| accepted

Answered
How to solve "MATLAB cannot determine whether "py" refers to a function or variable" under SPMD.
Verfiy that none of these points mentioned in this link is causing the issue. I tried to use "py" command inside spmd statement...

bijna 4 jaar ago | 0

Answered
Calling python from matlab isnt working
I suppose that your python script has the filename as test.py, which you are calling in matlab as py.test.our_function('xyz'). S...

bijna 4 jaar ago | 0

Answered
Not able to call python script from matlab using py command
Verify all of the points mentioned in this link, either one of these should be causing the issue.

bijna 4 jaar ago | 0

Answered
Computing mean of Python numeric vector in MATLAB
Modify the code as follows: import numpy as np import matlab.engine eng = matlab.engine.start_matlab() data = np.arange(5) ...

bijna 4 jaar ago | 0

Answered
How to create global variables in MATLAB Python workspace
You can use a getter function instead of accessing the variables as eng.workspace['aa']. function aa = getvals() global aa en...

bijna 4 jaar ago | 0

Answered
Calling python from Matlab: Error while calling standard modules like numpy into python script
You do not need MATLAB Engine API for Python when you want to call python functions or script from Matlab script. It is useful w...

bijna 4 jaar ago | 1

| accepted

Answered
How to call a python program from matlabr2019a
pyenv function is introduced in R2019b version. Hence you are getting the error in R2019a version as: >> pyenv('Version','vers...

bijna 4 jaar ago | 1

Answered
How to correctly install MATLAB Engine API for Python 3.7 on Windows 10
Have you verified that you have matlab_kernel installed as mentioned in the matlab answer that you have referred? You can verif...

bijna 4 jaar ago | 1

Answered
Is it possible to use classification learner app built in MATLAB for real time prediction??
You can read data from serial device and format it into a table or matrix suitable model to make predictions. The data for predi...

bijna 4 jaar ago | 0

Answered
Prediction response of single data points
You can predict the the class of individual datapoints. I would suggest to look into Classification Learner and how to export ...

bijna 4 jaar ago | 0