photo

Aayush Gupta


Last seen: alrededor de 4 años hace Con actividad desde 2021

Followers: 0   Following: 0

I am currently pursuing my graduation in Electronics and Communication Engineering from Indian Institute of Information Technology, Bhopal. I have deep interest in Signal Processing and Wireless Communication. I have made projects in MATLAB and wish to work in Mathworks in the domain of Digital Signal Processing.

Estadística

All
MATLAB Answers

0 Preguntas
4 Respuestas

Cody

0 Problemas
6 Soluciones

CLASIFICACIÓN
190.892
of 300.352

REPUTACIÓN
0

CONTRIBUCIONES
0 Preguntas
4 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 20.928

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
50.049
of 168.212

CONTRIBUCIONES
0 Problemas
6 Soluciones

PUNTUACIÓN
72

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Revival Level 1
  • MATLAB Central Treasure Hunt Finisher
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
convert mp3 to wav
[Y fs]= audioread(file); audiowrite('ConvertAudioFile.wav',Y,fs)

más de 4 años hace | 0

Respondida
how to convert a wav to mp3 file in maylab
[Y fs]= audioread(file); audiowrite('ConvertAudioFile.mp3,Y,fs)

más de 4 años hace | 0

Respondida
Hamming code on image
Try Reading the image into workspace using imread funtion. After reading the image, convert it into a gray scale image. Then con...

más de 4 años hace | 0

Resuelto


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

más de 4 años hace

Respondida
How to extract frames of a video
v=videoReader('filename.mp4') %to read all the frames frames=read(v) % for reading any particular nth frame you can use read(...

más de 4 años hace | 0

Resuelto


Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...

más de 4 años hace

Resuelto


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

más de 4 años hace

Resuelto


Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...

más de 4 años hace

Resuelto


Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...

más de 4 años hace

Resuelto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

más de 4 años hace