Madheswaran - MATLAB Central
photo

Madheswaran


Last seen: Today Active since 2024

Followers: 0   Following: 0

Statistics

MATLAB AnswersFrom 07/24 to 05/25Use left and right arrows to move selectionFrom 07/24Use left and right arrows to move left selectionTo 05/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 Questions
70 Answers

RANK
624
of 298,512

REPUTATION
122

CONTRIBUTIONS
0 Questions
70 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
21

RANK
 of 20,606

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 161,536

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Knowledgeable Level 3
  • 3 Month Streak
  • First Answer

View badges

Feeds

View by

Answered
using mexaw64 in matlab code
Hi @Debojyoti Biswas, You can extend your code to support Windows as well. Consider the below code sinppet: % Compile based on...

1 month ago | 1

Answered
mex cplusplus matlab::data::RowMajorIterator
Hi @Markus Leuthold You can use the row-major iterator by utilizing the RowMajor class as follows: void operator()(matlab::mex...

1 month ago | 0

Answered
MATLAB crashes when running in a parallel bash mode
Hi Your MATLAB crashes are caused by memory allocation failures. As you can notice from the error message you have uploaded, th...

1 month ago | 0

Answered
TypeInitialization exception in using MWArray.dll
Hi Mahesh, This error is very likely related to a 32/64 bit architecutre mismatch between your MATLAB Compiled component and th...

2 months ago | 0

Answered
how to include COM API in m scripts?
Hi Ghamdan, You can use 'actxserver' to creates a local OLE Automation server, where 'progid' is the programmatic identifier (P...

2 months ago | 0

Answered
Unsolved external symbol in C++ interface build
Hi @Hiroyuki Kobayashi I think the problem you are facing is because of a compiler mismatch between the one used to build your ...

3 months ago | 0

Answered
clibgen can not generate operator() in the C++ matrix class.
Hi @Son Tung Dang As of R2024b, MATLAB Interface for C++ doesn't support overloaded operators. You can see the list of limitati...

3 months ago | 0

Answered
Why can't I open Matlab, but I get "Unable to communicate with the required Mathwork service (Error 5201)." How to solve this?
Hi @明慧, This error suggests that MATLAB is experiencing a licensing problem. To resolve this error, you can try the following s...

3 months ago | 0

Answered
Python calls MATLAB built-in function griddedInterpolant(), how do I get the value of the query point?
Hi @xaofeng he The problem you are facing is because MATLAB objects (like griddedInterpolant) cannot be called directly in Pyth...

3 months ago | 0

Answered
mex compilation not working?
Hi @cui,xingxing The error you are facing is because both mex.hpp and MatlabEngine.hpp define the same enumeration matlab::engi...

3 months ago | 0

| accepted

Answered
MATLAB not finding its own library
Hi Scott, To build an engine application using MEX, you need to specify the '-client engine' flag when calling the 'mex' comman...

3 months ago | 0

Answered
PNG file saving in power point presentation
Hi Joydeb, To display all the images in a single slide, you need to define specific positions for each image in a 2x2 grid layo...

3 months ago | 0

Answered
Microsoft Word Check Box
Hi Thomas, MATLAB provides a powerful way to automate Microsoft Word operations through the ActiveX interface. Here's how you c...

3 months ago | 0

Answered
how to run .mlapp with Runtime?
Hi Cristiano, You can use the MATLAB Compiler to package the '.mlapp' file to standalone executable app. Here is steps to achi...

4 months ago | 0

Answered
Replace an image in existing powerpoint with .jpg
Hi Sarah, You can automate PowerPoint using MATLAB's ActiveX interface to replace both images and text across multiple slides....

4 months ago | 0

| accepted

Answered
How to read and show image from database?
Hello Fatimah, If you're utilizing a relational database such as MySQL to store images in BLOB (Binary Large Object) format, yo...

4 months ago | 0

Answered
tiledlayout doesn't behave as it should
Hello, When a figure is created in MATLAB, it automatically assigns default position values based on your screen size. If these...

4 months ago | 0

Answered
Unable to perform the harness operation for the externally saved test harness since the directory is not writable
Hi Flavio, I have came across similar error once. I checked the permissions with 'fileattrib' command, and noticed that value ...

4 months ago | 1

| accepted

Answered
Is it possible to have a uiconfirm choose an option after a timeout period?
Hi @Ryan You can achieve a timeout by using 'dialog' function. Consider the below code: function showTimeoutDialogMini() ...

4 months ago | 0

| accepted

Answered
track the position of the mouse cursor
Hi Rukhsar You can use 'get(groot, "PointerLocation") to get the current location of the cursor. Consider the following code fo...

4 months ago | 0

Answered
Read data from the built-in MATLAB web browser
Hi John, Apart from using the built-in web browser as described in the answer link you posted, you can do the following. If yo...

4 months ago | 0

Answered
Call to download server failed (HTTP error code: 403)
Hi Andie, The workaround suggested by the MathWorks techinical support is to replace 'https://' with 'http://' for the MATLAB ...

4 months ago | 1

Answered
generate random numbers among each non zero column elements
Hi Chaoyang, Based on your reply to Jonas, I understand that you would like to get one random row index of any non-zero value ...

4 months ago | 1

Answered
Save image to a new word document
Hi Miguel, You can use MATLAB's 'actxserver' to interact with Microsoft Word to achieve your desired task. Below is a minimal e...

4 months ago | 0

Answered
Failed to run led demo in external mode at the raspberry pi 4B with simulink
Hello Chen, Upon reviewing the error log, it appears that the file 'tmwtypes.h' cannot be located during the code build process...

4 months ago | 1

Answered
how to halt a for loop in an external function called from mlapp by using a stop button in the mlap app
Hi Andrew, The error occurs because MATLAB functions can't automatically access properties of the App object unless you explic...

4 months ago | 0

| accepted

Answered
Changing Pushbutton BackgroundColor for 0.1 second
Hi Day Hong Kim, To change the background color of a push button, you can adjust the 'BackgroundColor' property. If you intend ...

4 months ago | 0

Answered
Extracting sub matrix from sparse matrix
Hello Daniel, You can access elements of a sparse matrix using the syntax 'S(I, I)', where I is an array of indices and 'S' is ...

5 months ago | 0

Answered
Finding Indices of Duplicate Values to create a new array
Hi David, You can use 'unique' function in MATLAB to get the unique categories in the 'Region'. After that, I have used logica...

5 months ago | 0

Answered
How do I connect between the Simscape Specialized Power System blocks to simulink blocks?
Hi @Varun, You can directly connect Simscape Specialized Power System blocks with Simulink blocks, without the need of any conv...

6 months ago | 0

Load more