フィルターのクリア

read data and plotting graph

7 ビュー (過去 30 日間)
Prawinth  Gunasegaran
Prawinth Gunasegaran 2019 年 5 月 17 日
回答済み: Yuliano Moscoso Yarin 2019 年 7 月 1 日
how to read the txt file and plot the graph
  1 件のコメント
Raj
Raj 2019 年 5 月 17 日
Reading data is not a problem. Use 'fopen' to open the file and 'fscanf' to read the data. Or you can use 'textscan' to read the full file as strings and then convert numeric strings to numbers. How do you want to plot the data?

サインインしてコメントする。

回答 (1 件)

Yuliano Moscoso Yarin
Yuliano Moscoso Yarin 2019 年 7 月 1 日
as @Raj comment it depenes of the purpose of what you need , I can for example use the command "readtable"
sound = readtable('sound.txt');% this will work if this archive is in the same matlab directory
% then you can plot (notice that I'm using the variable name Var2 since your data has no variable names)
plot(sound.Var2)
try.jpg

カテゴリ

Help Center および File ExchangeAudio and Video Data についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by