T = readtable('Lab5_R_100_MOhm.txt','VariableNamingRule','preserve')
f = T.(1);
A = T.(2);
Ph = T.(3);
figure
tiledlayout(2,1)
nexttile()
semilogx(f,10*log10(-A))
ylabel('Magnitude')
nexttile()
semilogx(f,Ph)
xlabel('Frequency')
ylabel('Phase')

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