Community Profile

photo

Anurag Agrawal

MathWorks

Last seen: casi 2 años hace Con actividad desde 2019

Followers: 0   Following: 0

Contacto

Associate Engineer at Engineering Development Group at Mathworks

Estadísticas

All
  • Knowledgeable Level 2
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
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...

casi 4 años hace | 0

| aceptada

Pregunta


How to supress Excel warning or alerts using MATLAB?
How to supress Excel warning or alerts using MATLAB?

casi 4 años hace | 1 respuesta | 0

1

respuesta

Respondida
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...

alrededor de 4 años hace | 0

Respondida
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...

alrededor de 4 años hace | 1

Respondida
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...

alrededor de 4 años hace | 0

Respondida
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...

alrededor de 4 años hace | 0

Respondida
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...

alrededor de 4 años hace | 0

Respondida
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...

alrededor de 4 años hace | 0

| aceptada

Respondida
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...

alrededor de 4 años hace | 0

Respondida
Extracts columns using functions
Your question sounds incomplete. However from my understanding, you can use matfile function to access and change variables in M...

alrededor de 4 años hace | 0

| aceptada

Respondida
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 ...

alrededor de 4 años hace | 0

Respondida
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...

alrededor de 4 años hace | 0

| aceptada

Respondida
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....

alrededor de 4 años hace | 0

Respondida
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.

más de 4 años hace | 1

| aceptada