single figure plot
This commit is contained in:
parent
2a38009d4f
commit
36f0c6f6b7
@ -23,24 +23,14 @@ if DISPLAY_HZ % divide radians back to hertz
|
|||||||
end
|
end
|
||||||
|
|
||||||
figure(1);
|
figure(1);
|
||||||
|
hold on;
|
||||||
%plot(x_vals, real(cond));
|
%plot(x_vals, real(cond));
|
||||||
semilogx(x_vals, real(cond));
|
semilogx(x_vals, real(cond));
|
||||||
|
|
||||||
grid();
|
|
||||||
title('2D Sheet Real Conductivity');
|
|
||||||
ylabel('Conductivity (S/m)');
|
|
||||||
if DISPLAY_HZ
|
|
||||||
xlabel('Frequency (Hz)');
|
|
||||||
else
|
|
||||||
xlabel('Frequency (rads-1)');
|
|
||||||
end
|
|
||||||
|
|
||||||
figure(2);
|
|
||||||
%plot(x_vals, imag(cond));
|
|
||||||
semilogx(x_vals, imag(cond));
|
semilogx(x_vals, imag(cond));
|
||||||
|
|
||||||
grid();
|
legend('Real', 'Imaginary');
|
||||||
title('2D Sheet Imaginary Conductivity');
|
grid;
|
||||||
|
title('2D Sheet Conductivity');
|
||||||
ylabel('Conductivity (S/m)');
|
ylabel('Conductivity (S/m)');
|
||||||
if DISPLAY_HZ
|
if DISPLAY_HZ
|
||||||
xlabel('Frequency (Hz)');
|
xlabel('Frequency (Hz)');
|
||||||
|
Loading…
Reference in New Issue
Block a user