I have a table of phase and amplitude in a excel sheet...i want to plot a graph of phase vs amplitude......... can anyone tell me how i do it ?

4 次查看(过去 30 天)
PLease anyone?
  4 个评论

请先登录,再进行评论。

采纳的回答

KSSV
KSSV 2016-9-2
I don't about the last attached image...but with your phase amp.png and attached xl file. Run the below code.
clc; clear all
file = 'example_alumi.xlsx' ;
[num,txt,raw] = xlsread(file) ;
phase = num(:,1) ;
amp = num(:,2) ;
loop = linspace(-10,10,length(num));
figure
subplot(211)
plot(loop,amp,'r')
ylabel('Aplitude')
subplot(212)
plot(loop,phase,'b')
ylabel('Phase Shift')
xlabel('loop')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by