Community Profile

photo

Shrinidhi KR


Last seen: alrededor de 2 años hace Con actividad desde 2020

Followers: 0   Following: 0

Estadísticas

  • Knowledgeable Level 2
  • Revival Level 3
  • First Answer

Ver insignias

Feeds

Ver por

Respondida
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...

casi 4 años hace | 0

| aceptada

Respondida
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...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 0

| aceptada

Respondida
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...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 0

Respondida
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.

casi 4 años hace | 0

Respondida
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) ...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 1

| aceptada

Respondida
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...

casi 4 años hace | 1

Respondida
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...

casi 4 años hace | 1

Respondida
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...

casi 4 años hace | 0

Respondida
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 ...

casi 4 años hace | 0