use matlab to plot fft from excel sheet
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi
how do i plot fft from excel sheet data?
here are my codes:
Fs=20;
Ts=1/Fs;
t=0:Ts:1;
T=readtable("readings.xls");
Warning: Column headers from the file were modified to make them valid MATLAB identifiers before creating variable names for the table. The original column headers are saved in the
VariableDescriptions property.
Set 'PreserveVariableNames' to true to use the original column headers as table variable names.
>>start=T(A2);
Unrecognized function or variable 'A2'.
>>startpoint=xlsread("readings.xls",A2);
Unrecognized function or variable 'A2'.
Can I ask how to set the starting point using datas from my excel sheet? (to plot fft)
Thanks in advance!
댓글 수: 0
답변 (1개)
KSSV
2019년 11월 8일
It looks like there is no variable name A2 in the table. Try using:
T.(1), T.(2) etc...or check the variablenames by printing the table or using the below line:
T.Properties.VariableNames % T is the table variable
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Transforms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!