Community Profile

photo

Shrinidhi KR


Last seen: environ 2 ans il y a Actif depuis 2020

Statistiques

  • Knowledgeable Level 2
  • Revival Level 3
  • First Answer

Afficher les badges

Content Feed

Afficher par

A répondu
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...

presque 4 ans il y a | 0

| A accepté

A répondu
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...

presque 4 ans il y a | 0

A répondu
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...

presque 4 ans il y a | 0

| A accepté

A répondu
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...

presque 4 ans il y a | 0

A répondu
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...

presque 4 ans il y a | 0

A répondu
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.

presque 4 ans il y a | 0

A répondu
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) ...

presque 4 ans il y a | 0

A répondu
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...

presque 4 ans il y a | 0

A répondu
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...

presque 4 ans il y a | 1

| A accepté

A répondu
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...

presque 4 ans il y a | 1

A répondu
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...

presque 4 ans il y a | 1

A répondu
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...

presque 4 ans il y a | 0

A répondu
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 ...

presque 4 ans il y a | 0