how to plot two seperate figures the left and right channels
Show older comments
what is below written by me shows the plot of the both left and right channel signals at the same time. i would like to plot them seperately into two figures. how can i do that? thanks
close all
clear all
samples=[1,10^5];
[y,fs]=audioread('funk.wav',samples);
t=linspace(0,length(y)/fs,length(y));
plot(t,y)
Accepted Answer
More Answers (1)
Jesus Sanchez
on 5 Jan 2020
0 votes
Use subplot
Categories
Find more on Image Arithmetic in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!