Aditya Salveru
自 2018 起处于活动状态
Followers: 0 Following: 0
Feeds
已回答
i am facing problem using a matlab exchange file. i downloaded it but dont know the procedure to use it.
Hi, I suggest you to download the file from MATLAB itself. Search for the Add-On you want, in this case search for 'EM Algori...
i am facing problem using a matlab exchange file. i downloaded it but dont know the procedure to use it.
Hi, I suggest you to download the file from MATLAB itself. Search for the Add-On you want, in this case search for 'EM Algori...
6 years 前 | 0
| 已接受
已回答
Image Analysis - Adding Images
Hi, You can achieve this task by using *imread* and *imshow* functions. *when you read the image using the imread function...
Image Analysis - Adding Images
Hi, You can achieve this task by using *imread* and *imshow* functions. *when you read the image using the imread function...
6 years 前 | 0
| 已接受
已回答
How to save histogram as a png file with the axis values (as it displays in imhist() function ) inside a loop?
Hi, You can save the entire histogram using as it shows in the imhist functions using the below code snippet. saveas(gcf...
How to save histogram as a png file with the axis values (as it displays in imhist() function ) inside a loop?
Hi, You can save the entire histogram using as it shows in the imhist functions using the below code snippet. saveas(gcf...
6 years 前 | 0
已回答
Neural Network Batch Training by calling train multiple times
Hi, Your machine is running out of memory as you trying to train network with entire data set at once. I would suggest y...
Neural Network Batch Training by calling train multiple times
Hi, Your machine is running out of memory as you trying to train network with entire data set at once. I would suggest y...
6 years 前 | 0
已回答
Root locus plot unable to see properties
Hi Bram, you have to use 'rlocus' function with the transfer function as input then a window opens up showing the root locus ...
Root locus plot unable to see properties
Hi Bram, you have to use 'rlocus' function with the transfer function as input then a window opens up showing the root locus ...
6 years 前 | 1
| 已接受
已回答
Create a signal from concatenating signals with pauses inbetween.
Hi, You can concatenate the signals with zeros of desired length to get a pause in the sound. I have taken a sounds of thr...
Create a signal from concatenating signals with pauses inbetween.
Hi, You can concatenate the signals with zeros of desired length to get a pause in the sound. I have taken a sounds of thr...
6 years 前 | 1
已回答
how to make bar graph outline dotted?
Hi, You can get dotted lines instead of solid black lines by setting *LineStyle* property of *barh* to *':'* . You can also c...
how to make bar graph outline dotted?
Hi, You can get dotted lines instead of solid black lines by setting *LineStyle* property of *barh* to *':'* . You can also c...
6 years 前 | 0
| 已接受
已回答
Create single variable from workspace variables
Hi Juri, You can get the names of all variables in your workspace using *'who'* and you can access the variables with the cor...
Create single variable from workspace variables
Hi Juri, You can get the names of all variables in your workspace using *'who'* and you can access the variables with the cor...
6 years 前 | 0
| 已接受
已回答
Method to plot two audio files in the same graph of (amplitude Vs. Frequency)
Hi Harindu, You can plot the frequency spectra of both the signals on the same graph by using the command. hold on I ...
Method to plot two audio files in the same graph of (amplitude Vs. Frequency)
Hi Harindu, You can plot the frequency spectra of both the signals on the same graph by using the command. hold on I ...
6 years 前 | 0
已回答
calculating max value of each interval in a data and apply loop for each interval.
Hi sud, You can do this by by finding the max of 1-10,1-20,1-30....elements. The code for the same is as follows: k=ran...
calculating max value of each interval in a data and apply loop for each interval.
Hi sud, You can do this by by finding the max of 1-10,1-20,1-30....elements. The code for the same is as follows: k=ran...
6 years 前 | 0
| 已接受
已回答
How to change X and Y axis values on a heatmap.
Hi Myles, You can change the x axis and y axis values by providing them as input to heatmap. Create numemric arrays x,y wi...
How to change X and Y axis values on a heatmap.
Hi Myles, You can change the x axis and y axis values by providing them as input to heatmap. Create numemric arrays x,y wi...
6 years 前 | 2
| 已接受