Ashish Gudla
MathWorks
2014년부터 활동
Followers: 0 Following: 0
Feeds
답변 있음
Local cluster fails to validate at the SPMD Job Test step in Cluster Profile Manager
You can try the troubleshooting steps mentioned here: <http://www.mathworks.com/matlabcentral/answers/92124-why-am-i-unable-t...
Local cluster fails to validate at the SPMD Job Test step in Cluster Profile Manager
You can try the troubleshooting steps mentioned here: <http://www.mathworks.com/matlabcentral/answers/92124-why-am-i-unable-t...
10년 초과 전 | 1
답변 있음
2-D Contour plot for non-uniformly spaced data points
If I understand you correctly, you are trying to plot the raw data, instead of creating a regular mesh using 'meshgrid'. You ...
2-D Contour plot for non-uniformly spaced data points
If I understand you correctly, you are trying to plot the raw data, instead of creating a regular mesh using 'meshgrid'. You ...
10년 초과 전 | 1
답변 있음
retrieve values and export to workspace from a radiobutton in a buttongroup
You are using the correct function get(eventdata.NewValue,'Tag') to read the tag of the button clicked. However when you want to...
retrieve values and export to workspace from a radiobutton in a buttongroup
You are using the correct function get(eventdata.NewValue,'Tag') to read the tag of the button clicked. However when you want to...
10년 초과 전 | 0
답변 있음
GPU CUDA problems: CUDA_ERROR_UNKNOWN
It is possible that the CUDA driver might be causing the error message. Do you have the latest drivers installed? If not, instal...
GPU CUDA problems: CUDA_ERROR_UNKNOWN
It is possible that the CUDA driver might be causing the error message. Do you have the latest drivers installed? If not, instal...
10년 초과 전 | 1
답변 있음
Cannot plot and this error occurs when I load MatLab. Any idea what the issue is and how to fix it?
The errors might be due to missing java libraries for MATLAB to run(or a corrupted installation). Reinstalling MATLAB would reso...
Cannot plot and this error occurs when I load MatLab. Any idea what the issue is and how to fix it?
The errors might be due to missing java libraries for MATLAB to run(or a corrupted installation). Reinstalling MATLAB would reso...
10년 초과 전 | 0
답변 있음
Is it possible to create textbox with fixed width on a plot?
You can use the annotation textbox with the 'FitBoxToText' property set to 'off'. This will wrap the text to fit the width of th...
Is it possible to create textbox with fixed width on a plot?
You can use the annotation textbox with the 'FitBoxToText' property set to 'off'. This will wrap the text to fit the width of th...
10년 초과 전 | 1
답변 있음
Variable reconnaissance problem with function polar
I understand that you are trying to use POLAR function and running into error. As the error message states, the dimensions of 'n...
Variable reconnaissance problem with function polar
I understand that you are trying to use POLAR function and running into error. As the error message states, the dimensions of 'n...
10년 초과 전 | 0
답변 있음
inputparser: error when using a structure as a surrogate for parameter-value pairs.
It would work when you define 'c' in a structure as well. Please see the example below: function myfun(varargin) p = inp...
inputparser: error when using a structure as a surrogate for parameter-value pairs.
It would work when you define 'c' in a structure as well. Please see the example below: function myfun(varargin) p = inp...
10년 초과 전 | 0
| 수락됨
답변 있음
How can I get this example?
You can simply create the model by dragging and dropping the blocks from a Simulink Library. In 'Simulink Library Browser' , cli...
How can I get this example?
You can simply create the model by dragging and dropping the blocks from a Simulink Library. In 'Simulink Library Browser' , cli...
10년 초과 전 | 0
답변 있음
Error when using deploytool Application Compiler
I understand that you get a 'Subscript indices must either be real positive integers or logicals' error message when you try and...
Error when using deploytool Application Compiler
I understand that you get a 'Subscript indices must either be real positive integers or logicals' error message when you try and...
10년 초과 전 | 1
| 수락됨
답변 있음
Problem compiling simple code with mcc
You could try using the old depfun (as shown below) and see if that works. setenv('MCC_USE_DEPFUN','1')
Problem compiling simple code with mcc
You could try using the old depfun (as shown below) and see if that works. setenv('MCC_USE_DEPFUN','1')
11년 초과 전 | 0
| 수락됨
답변 있음
Plot magnitude on y-axis and time on x-axis read from an excel file
If you can import the excel file as column vectors, you can just loop through unique stage values and plot the respective Magnit...
Plot magnitude on y-axis and time on x-axis read from an excel file
If you can import the excel file as column vectors, you can just loop through unique stage values and plot the respective Magnit...
11년 초과 전 | 0
답변 있음
Most correct way to use global variables across callbacks in GUI
As you mentioned, there are multiple ways to share data among call backs as explained in this <http://www.mathworks.com/help/mat...
Most correct way to use global variables across callbacks in GUI
As you mentioned, there are multiple ways to share data among call backs as explained in this <http://www.mathworks.com/help/mat...
11년 초과 전 | 0
답변 있음
Break points in no debugger in nodesktop mode
You can change this in the preferences. On MATLAB main window select the “Home” tab and click on Preferences. In the Pref...
Break points in no debugger in nodesktop mode
You can change this in the preferences. On MATLAB main window select the “Home” tab and click on Preferences. In the Pref...
11년 초과 전 | 0
답변 있음
where you saved the file upload? using GUI
"uigetfile" function returns only the filename and path of the file. It does not upload the file. You can read more about this i...
where you saved the file upload? using GUI
"uigetfile" function returns only the filename and path of the file. It does not upload the file. You can read more about this i...
11년 초과 전 | 0
답변 있음
Alternative to bitshift(A,k,N) as in 2014a , it gives a warning and I would like to avoid using it. But cannot understand alternative suggested.
If you need to truncate and return only 2 bits after shifting you can "bitand" the result with appropriate number. for last b...
Alternative to bitshift(A,k,N) as in 2014a , it gives a warning and I would like to avoid using it. But cannot understand alternative suggested.
If you need to truncate and return only 2 bits after shifting you can "bitand" the result with appropriate number. for last b...
11년 초과 전 | 0
| 수락됨
답변 있음
How to construct a binary matrix reporting 1 in case of equal rows of two arrays of different dimensions?
You could create the 'C' matrix with all zeros and then, find the positions where its supposed to be '1' and replace it. To f...
How to construct a binary matrix reporting 1 in case of equal rows of two arrays of different dimensions?
You could create the 'C' matrix with all zeros and then, find the positions where its supposed to be '1' and replace it. To f...
11년 초과 전 | 0
| 수락됨
답변 있음
including a list in an input prompt
You could use "listdlg" ( <http://www.mathworks.com/help/matlab/ref/listdlg.html see doc> )
including a list in an input prompt
You could use "listdlg" ( <http://www.mathworks.com/help/matlab/ref/listdlg.html see doc> )
11년 초과 전 | 0
답변 있음
assigning multiple values to symbolic variables from a matrix product
I dont believe there is a way to directly assign a vector to a comma separated list. If you are just working with 2 variables...
assigning multiple values to symbolic variables from a matrix product
I dont believe there is a way to directly assign a vector to a comma separated list. If you are just working with 2 variables...
11년 초과 전 | 0
답변 있음
max items in a nominal array
I dont believe there is a way to increase the number of categories. categorical.maxNumCategories This gives the maximum ...
max items in a nominal array
I dont believe there is a way to increase the number of categories. categorical.maxNumCategories This gives the maximum ...
11년 초과 전 | 0
답변 있음
Output very large matrix into text files
Instead of converting the matrix into cells and adding an extra column with ‘N’ in it you can directly write the matrix to file ...
Output very large matrix into text files
Instead of converting the matrix into cells and adding an extra column with ‘N’ in it you can directly write the matrix to file ...
11년 초과 전 | 1
답변 있음
How to colormap a 3D trajectory using a 4th array
You can use “scatter3” function to plot your trajectory and also pass the additional arguments, the size of the point and the co...
How to colormap a 3D trajectory using a 4th array
You can use “scatter3” function to plot your trajectory and also pass the additional arguments, the size of the point and the co...
11년 초과 전 | 1
답변 있음
Convert IP addresses from decimal to IPv4 and format output using vectoring
You can probably convert the IP address from decimal to IPv4 format using vectorization however its not very intuitive. I used a...
Convert IP addresses from decimal to IPv4 and format output using vectoring
You can probably convert the IP address from decimal to IPv4 format using vectorization however its not very intuitive. I used a...
11년 초과 전 | 0
| 수락됨

