How to generate a song on Matlab?
Afficher commentaires plus anciens
I have to make a song on Matlab and then set up sine waves that correspond to the notes on the scale. The notes are CFDGCEAmCFGC. can someone help me with this?
Réponse acceptée
Plus de réponses (2)
zeeshan ali
le 1 Mar 2020
0 votes
fs = 1e4; % sampling frequency
t = 1:1/fs:5; % time signal
freq = 261.6; % note frequency in Hz (middle C)
y = sin(2*pi*freq*t); % create sine wave
player = audioplayer(y, fs); % create audio player object
play(player); % play the sound
Micah Audrey
le 26 Jan 2024
0 votes
CAN SOMEONE REPLICATE THE SONG KISS THE RAIN USING MATLAB PLS
Catégories
En savoir plus sur Audio and Video Data dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!