plot missing in matlab
显示 更早的评论
the problem is that when i asked to plot an audio file it gives an error on the line of the plot
1 个评论
Walter Roberson
2021-5-26
Please show how you are asking to do the plotting, and show how you create the variables that you pass in to the plot call.
回答(1 个)
Walter Roberson
2021-5-26
0 个投票
You cannot plot() a file by name. You need to read the data such as by using audioread(), and plot the data that results.
8 个评论
Ayman Shaban
2021-5-26
Ayman Shaban
2021-5-26
Walter Roberson
2021-5-26
What is the error message?
Note: you should be using
t = (0:size(g,1)-1)/fs;
plot(t, g)
Ayman Shaban
2021-5-26
Ayman Shaban
2021-5-26
Walter Roberson
2021-5-26
Please show the complete error message, everything that is in red.
Ayman Shaban
2021-5-26
Ayman Shaban
2021-5-26
类别
在 帮助中心 和 File Exchange 中查找有关 Creating, Deleting, and Querying Graphics Objects 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!