Community Profile

photo

Deepak Gala


Last seen: 3 years ago Active since 2017

Followers: 0   Following: 0

Statistics

  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

Answered
Reading, resampling and writing audio files
This should work! for i=1:1000 FILE1=sprintf('file48000_%d.wav',i); FILE2=sprintf('file8000_%d.wav',i); ...

6 years ago | 2

Answered
removal of background of cropped image
This might link might help! <https://blogs.mathworks.com/loren/2015/06/24/how-do-you-modify-the-background-of-an-image/?s_tid=a...

6 years ago | 0

Answered
How to remove background from an image?
This link might help! <https://blogs.mathworks.com/loren/2015/06/24/how-do-you-modify-the-background-of-an-image/?s_tid=answers...

6 years ago | 0

Answered
How can I remove background of an insect image ? and I want to make the back ground as white.
This link will help! <https://blogs.mathworks.com/loren/2015/06/24/how-do-you-modify-the-background-of-an-image/?s_tid=answers_r...

6 years ago | 1

| accepted

Answered
how to put error value in PID?
I guess you are talking about the Simulink model in Matlab. There is a 'PID' block in Simulink library. I have attached a simple...

6 years ago | 0

Answered
Reading, resampling and writing audio files
This should do what you want. [y,fs]=audioread('file48000.wav'); audiowrite('file8000.wav',y,8000);

6 years ago | 0

| accepted