Anurag Agrawal
MathWorks
Followers: 0 Following: 0
Associate Engineer at Engineering Development Group at Mathworks
Feeds
已回答
How to supress Excel warning or alerts using MATLAB?
You can supress excel alerts/warnings using this command: e = actxserver('Excel.Application'); set(e, 'DisplayAlerts', 0); Th...
How to supress Excel warning or alerts using MATLAB?
You can supress excel alerts/warnings using this command: e = actxserver('Excel.Application'); set(e, 'DisplayAlerts', 0); Th...
4 years 前 | 0
| 已接受
提问
How to supress Excel warning or alerts using MATLAB?
How to supress Excel warning or alerts using MATLAB?
4 years 前 | 1 个回答 | 0
1
个回答已回答
Does the 2020a version allow using the deploy function for deep learning models on macOS?
Hi Please have a look at the relaease notes for 2020a. This will give you details about all the new features and updates. htt...
Does the 2020a version allow using the deploy function for deep learning models on macOS?
Hi Please have a look at the relaease notes for 2020a. This will give you details about all the new features and updates. htt...
4 years 前 | 0
已回答
Uninstalling old version of Matlab
M-files will work in the newer version provided functions are not deprecated in newer version. As mentioned in the comment, yo...
Uninstalling old version of Matlab
M-files will work in the newer version provided functions are not deprecated in newer version. As mentioned in the comment, yo...
4 years 前 | 1
已回答
Time Sequence Markov to Probability Matrix
You can start with creating a square maxtrix of zeros. See this for more details: M= zeros(n); %where n is the number of states...
Time Sequence Markov to Probability Matrix
You can start with creating a square maxtrix of zeros. See this for more details: M= zeros(n); %where n is the number of states...
4 years 前 | 0
已回答
imnoise(I,'salt & pepper',rho) but with different proportion of salt and paper
Hi As of now, I can't find any direct implementation to do that. However, you can consider this file exchange submission : ht...
imnoise(I,'salt & pepper',rho) but with different proportion of salt and paper
Hi As of now, I can't find any direct implementation to do that. However, you can consider this file exchange submission : ht...
4 years 前 | 0
已回答
Matlab R2019b no window manager on Ubuntu 18.04
Try these workarounds 1. Refresh the file system caches using the following commands: >> restoredefaultpath >> rehash toolbox...
Matlab R2019b no window manager on Ubuntu 18.04
Try these workarounds 1. Refresh the file system caches using the following commands: >> restoredefaultpath >> rehash toolbox...
4 years 前 | 0
已回答
How to make these truss analysis direct stiffness method files connect inputs and outputs?
As you are using functions in your m-files, you can call the function (of your first m-file) then you can save it's output and t...
How to make these truss analysis direct stiffness method files connect inputs and outputs?
As you are using functions in your m-files, you can call the function (of your first m-file) then you can save it's output and t...
4 years 前 | 0
| 已接受
已回答
Error in create automation algorithm for labeling
Refer to Memory Usage information located at the following URL: https://www.mathworks.com/help/matlab/performance-and-memory.ht...
Error in create automation algorithm for labeling
Refer to Memory Usage information located at the following URL: https://www.mathworks.com/help/matlab/performance-and-memory.ht...
4 years 前 | 0
已回答
Extracts columns using functions
Your question sounds incomplete. However from my understanding, you can use matfile function to access and change variables in M...
Extracts columns using functions
Your question sounds incomplete. However from my understanding, you can use matfile function to access and change variables in M...
4 years 前 | 0
| 已接受
已回答
How to run an exe file and save the outputfile generated to a different folder?
Hi You can use movefile function to move your file to the desired folder movefile source destination For more details, you ...
How to run an exe file and save the outputfile generated to a different folder?
Hi You can use movefile function to move your file to the desired folder movefile source destination For more details, you ...
4 years 前 | 0
已回答
Publishing multiple files as a toolbox vs just putting the files as a zip on the MATLAB File Exchange
It's better to package it as a toolbox as it's well organised. MATLAB generates a single installation file (.mltbx) that enabl...
Publishing multiple files as a toolbox vs just putting the files as a zip on the MATLAB File Exchange
It's better to package it as a toolbox as it's well organised. MATLAB generates a single installation file (.mltbx) that enabl...
4 years 前 | 0
| 已接受
已回答
Extract specific excell files from a folder and merge all the data in a single file
Hi Raffaele You can use dir function to filter out the content of your folder. https://www.mathworks.com/help/matlab/ref/dir....
Extract specific excell files from a folder and merge all the data in a single file
Hi Raffaele You can use dir function to filter out the content of your folder. https://www.mathworks.com/help/matlab/ref/dir....
4 years 前 | 0
已回答
how to implement noise jamming in Simulink?
To generate noise jamming signal, you can use step function present in Phased Array System Toolbox. I hope this will help.
how to implement noise jamming in Simulink?
To generate noise jamming signal, you can use step function present in Phased Array System Toolbox. I hope this will help.
5 years 前 | 1
| 已接受
已解决
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
5 years 前
已解决
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
5 years 前
已解决
Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.
5 years 前
已解决
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
5 years 前