Community Profile

photo

Nagarjuna Manchineni

MathWorks

Last seen: 15일 전 2017년부터 활동

통계

  • Knowledgeable Level 3
  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer

배지 보기

Content Feed

보기 기준

답변 있음
libMatlabDataArray.dll - corrupted somehow?
I see that you are referencing the libMatlabDataArray.dll from a custom location rather than using the one that is being shipped...

5년 초과 전 | 0

답변 있음
How do I call a .NET method?
Hello Gauri, I see that you are loading the assembly into MATLAB successfully. However, you can use the following way to call...

5년 초과 전 | 1

답변 있음
matlab.engine, Python2.7, matlab 2018 segfault error
Ehsan, I see that you have already tried forcing a different version of libstdc++. The issue might also occur because of the ...

5년 초과 전 | 0

답변 있음
Install a MATLAB .DLL on a machine with MATLAB already installed
Hi Gavin, I believe the MATLAB Runtime might not be installed on your computer or the path of the MATLAB Runtime is not part ...

거의 6년 전 | 0

답변 있음
Receiving this error when using XLSwrite, "Error using xlswrite (line 226) Error: Object returned error code: 0x800A03EC", have tried looking at other threads but still getting this error.
Take a look at <http://www.mathworks.com/matlabcentral/answers/101631-why-do-i-receive-an-error-error-code-0x800a03ec-when-using...

거의 6년 전 | 0

답변 있음
ActiveX Syntax for Word Tables (Cursor Position, Sub-tables, etc.)
Hi Johnathan, 'actxserver(progid)' MATLAB command creates a local OLE Automation server, where progid is the programmatic i...

거의 6년 전 | 2

답변 있음
Start an *.exe with MDCS
Hi Christian, I believe that the execution of executable might not have happened successfully. For verifying that, can you ch...

거의 6년 전 | 0

답변 있음
cannot open vlc from matlab using system command
Hi Ezekiel, I was able to launch the VLC player and play the video successfully by using the 'system' command on MATLAB R2018...

거의 6년 전 | 0

답변 있음
How to add values to a column based on time column and its own column?
You can implement your workflow similar to the example below. data1 = [1;2;3;4;5;6;7;8;9;10]; data2 = [0;0;2;0;0;0;0;0;...

6년 초과 전 | 0

답변 있음
Control Thorlabs Stages at Command Line
I believe you are trying to control the stages using keyboard keys instead of clicking on the push buttons in the figure using a...

6년 초과 전 | 0

답변 있음
How can I connect my functiongenerator with MATLAB
If the function generator supports IVI-C driver. You could install the following support package that installs drivers that help...

6년 초과 전 | 1

| 수락됨

답변 있음
How to distribute Matlab tasks to different PC in same network?
For distributing the MATLAB tasks onto other machines you need MATLAB Distributed Computing server (MDCS). You can create your o...

6년 초과 전 | 0

답변 있음
How to connect Zemax and Matlab
There are few external packages that are available on MATLAB file exchange which reads zemax file. You can try them: <https:/...

6년 초과 전 | 1

답변 있음
Modbus communication data problems
The command test=read(t,'inputregs',1,4,'uint32') reads 4 registers starting from 1 in 'uint32' format. I believe you wou...

6년 초과 전 | 1

답변 있음
MATLAB with OpenGL through terminal?
When you are running MATLAB from the command line (any SSH client), you can use 'nodesktop' mode to run MATLAB command line mode...

6년 초과 전 | 0

답변 있음
Single Phase Time-Varying Load
You can use the 'Three phase dynamic load' to handle the time varying load data. The following example can be a good starting po...

거의 7년 전 | 0

답변 있음
replicating Arduino pulseIn() on Matlab
I see that the solution in the link that you are referring was written for Giampiy's legacy Arduino library, which I think was t...

거의 7년 전 | 0

답변 있음
Import Data Into Workspace Issue
You can use 'fileparts' command to get the name of the file: [pathstr,name,ext] = fileparts(filename); % Read the file name...

거의 7년 전 | 0

| 수락됨

답변 있음
Terminate an application called by system() after fixed amount of time
See the following link that discusses on how to create and kill the process after some time: <https://www.mathworks.com/matla...

거의 7년 전 | 0

| 수락됨

답변 있음
using socket.io with events from matlab to a java sever
I see that you are trying to connect the socket by using the following syntax: *_input_socket = Socket(host, port);_* This...

거의 7년 전 | 1

답변 있음
Dear all, somebody knows how to open a .rrd file (round robin database file) with Matlab?. Thanks so much in advance. Alfredo
You can use rrdtool to get the data of the rdd file into XML format. >> rrdtool dump filename.rrd Once the XML is generate...

거의 7년 전 | 0

| 수락됨

답변 있음
py.os.popen error under Windows
To call Python libraries from MATLAB, you need to install a supported version of the reference implementation (CPython) for Pyth...

거의 7년 전 | 1

답변 있음
Matlab Online "timeout"
Currently time limit for execution of a script in MATLAB is 15 minutes. There is also currently no way to change this length of ...

거의 7년 전 | 3

답변 있음
Running Mlint on an m-file from Python
It is possible to check the MATLAB code by using 'mlint' or 'checkcode' (recommended) function. You can use MATLAB engine for py...

거의 7년 전 | 0

답변 있음
How to display 'Loading...' in 'cmd.exe' of a standalone application before it attempts to load MCR?
I believe you are trying to open an application GUI when you double click the standalone application .exe. For achieving the abo...

거의 7년 전 | 0

답변 있음
Questions on classification learner App
1. It depends on the classifier and the data/application you are using. For example, if you are trying to solve your classificat...

거의 7년 전 | 2

| 수락됨

답변 있음
MCR addpath thirdparty toolbox
* If you are directly calling (not by 'eval(....functionName....)' or constructing function file path in a string and calling th...

거의 7년 전 | 0

답변 있음
How to override methods called in static methods?
Static methods cannot be overridden like that. Always the parent class method will be executed in your case. This is because you...

거의 7년 전 | 2

| 수락됨

답변 있음
Why does inputparser instantiated within a class subfunction not use the default for the first optional argument?
You are properly using the 'inputParser' class. However, when you are passing the arguments using 'varargin' from 'testfun' to '...

거의 7년 전 | 1

| 수락됨

답변 있음
Using Matlab in Python
Looking at the error message, I can see that you are using the python from the Anaconda distribution. This version of Python is ...

거의 7년 전 | 0

| 수락됨

더 보기