Community Profile

photo

Sangeetha Jayaprakash

MathWorks

2016년부터 활동

Followers: 0   Following: 0

I am an Application Support Engineer at MathWorks.

통계

  • Knowledgeable Level 2
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
xcrun: error: SDK "macosx10.13.4" cannot be located
This suggests that the Xcode compiler is not being found. Its probably because of an out of date options file. This might help :...

거의 6년 전 | 0

| 수락됨

답변 있음
Calling matlab::engine::MATLABEngine::feval from multiple threads
The matlab::engine::MATLABEngine::fevalAsync function is thread safe i.e. if there are multiple threads in the C++ application, ...

거의 6년 전 | 1

답변 있음
Reading tooltip comments from an excel sheet
Getting each cell, and then using the Comment.Text property as follows, worked for me: comments = caExcelCellInfo.Comment...

거의 6년 전 | 1

| 수락됨

답변 있음
parpool() stalls on Xeon Phi x200 with >50 workers
Hi, If you are referring to Xeon Phi host processors (as introduced with the Knights Landing architecture), they are compati...

거의 6년 전 | 0

답변 있음
How can I build an Engine application but using Sublime Text 3 instead of Xcode 9?
Sublime Text is just a text editor like a more advanced form of Textedit on the mac. It is not a compiler, and you cannot comp...

거의 6년 전 | 0

답변 있음
Why does VideoReader always interpret the coded Image frame as a RGB Value.
Have you tried using "readFrame" function instead of "read"? You can try using "VideoFormat" when using the "readFrame" functio...

6년 초과 전 | 0

답변 있음
Subscripted assignment dimension mismatch
This error is most likely because you are attempting to assign elements to an existing array, but the size of the variable you a...

6년 초과 전 | 0

답변 있음
App Designer: Creating new UIfigure
I assume you have a 'uifigure' in App designer, and you would like to add components to it. # Above the canvas, to the right ...

6년 초과 전 | 1

답변 있음
Apply several properties to subplots without duplicated lines
You can just call the line "set(findobj(gcf,'type','axes'),'FontName','Calibri','FontSize',11,'FontWeight','Bold', 'LineWidth', ...

6년 초과 전 | 2

| 수락됨

답변 있음
Word Document Template Paper Size
I assume you are using "orient('landscape')" command to set the orientation. If you are using MATLAB R2016a or newer version...

6년 초과 전 | 0

답변 있음
I try to use a proprietary Danfoss software development tool with Simulink s-function export. The tool opens Matlab and tries to generate s-function, but it ends up in this error: No supported compiler or SDK was found. What can I do?
I assume it says "No supported compiler or SDK was found." when you run "mex -setup" in the MATLAB command window. When insta...

6년 초과 전 | 0

답변 있음
How do I deal with dll dependencies?
When a DLL is dependent no another - it means that one DLL relies another one - it might be using the functions from another DLL...

6년 초과 전 | 0

답변 있음
How can I open USB when it is not listet as COM port? In the device manager it is listed under USB-Controller
I assume you are trying to connect to a 'Newport Power Meter' device. It is possible that it is not listed as a COM port because...

6년 초과 전 | 1

| 수락됨

답변 있음
Using activex control for word - no spacing between paragraphs
Try changing the spacing between paragraphs by changing the "LineUnitAfter" property as follows: selection.Paragraphs.LineU...

6년 초과 전 | 0

| 수락됨

답변 있음
How do I retrieve the RGB data of a scatter plot from the CData values(a 1D vector corresponding to the array lengths X and Y) ?
You can obtain the indices based on the colormap and the Z vector applied to the CData property. Then you can get the correspond...

6년 초과 전 | 4

| 수락됨

답변 있음
How to run matlab on a cluster with Ubuntu
In order to run MATLAB scripts in parallel you might need: 1. a Parallel Computing toolbox license - if its a desktop with 8 ...

6년 초과 전 | 0

답변 있음
MATLAB 2017 Editor Causing Error: Error in rmiml.visibleInToolstrip
I am assuming you are using MATLAB R2017a. Can you check if you have multiple pathdef.m files in your path? You can do this b...

거의 7년 전 | 1

답변 있음
how to draw periodic functions in MATLAB
You can use the plot function to draw in MATLAB as described in this link: <http://www.mathworks.com/help/matlab/ref/plot.htm...

거의 7년 전 | 0

답변 있음
Tracking boxplot x axis labels
I assume that you are trying to get the ticklabels of the X axis for the attached boxplot. You can get the current axes, and th...

거의 7년 전 | 0

답변 있음
R2017a mex gfortran uses obsolete options
It looks like you are using GNU Fortran gfortran to compile the fortran MEX file. I believe that MATLAB R2015a was the last ...

거의 7년 전 | 0

답변 있음
Interactive user figure Window
It looks like you want to focus on a second figure window when user presses a key on the first one. Try using the "WindowKeyPre...

대략 7년 전 | 1

답변 있음
How to check how many events/callbacks have been queued in Matlab
It looks like you are trying to check how many scans are still queued after using "startBackground". Try using the functions 'S...

대략 7년 전 | 0

답변 있음
I am trying to get a numerical gradient with three variables, but I keep getting Error using gradient (line 49) Too many output arguments.
Maybe this link would help: <https://www.mathworks.com/matlabcentral/answers/142931-how-to-compute-gradients-of-a-data-on-a-3...

대략 7년 전 | 0

답변 있음
How to use mat2cell in splitapply?
I am assuming you are using the "findgroups" and "splitapply" functions to group a matrix into cells. From the error, it looks...

대략 7년 전 | 0

답변 있음
Compile a stand-alone application from a user-created toolbox
I assume that the MATLAB functions you are trying to compile into an application are supported for compilation by the MATLAB Com...

대략 7년 전 | 0

답변 있음
Configure the JAVA environment on Mac
I assume that you are using the "export" command in a bash shell. Using export command on terminal, will just setup the environm...

대략 7년 전 | 0

답변 있음
specific mex compiler matlab linux 64 bit
It looks like you are trying to use gcc version 4.9 compiler with the "mex" function. 1. To view all the MATLAB compatible co...

대략 7년 전 | 0

답변 있음
How do I use a matlab shared library without building the main executable with mbuild?
I am assuming that you have used the "mcc" MATLAB command to build the shared library from MATLAB(.m) files, and you would like ...

대략 7년 전 | 0

답변 있음
Can I build a MEX file within VisualStudio?
I assume that you would like to build a MEX file in Visual Studio IDE. Refer this link for information on how to compile a M...

7년 초과 전 | 0

| 수락됨

답변 있음
How to specify instrument driver?
I am assuming that you are using the latest MATLAB version R2016b. Here, it seems like the function named "driver" might be ...

7년 초과 전 | 2

| 수락됨

더 보기