Minor changes
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
#+TITLE: Measurements made by Marc Lessourd on the 17th of November 2017 - Matlab
|
||||
:drawer:
|
||||
:DRAWER:
|
||||
#+LATEX_CLASS: cleanreport
|
||||
#+LaTeX_CLASS_OPTIONS: [tocnp, secbreak, minted]
|
||||
#+STARTUP: overview
|
||||
|
||||
#+PROPERTY: header-args:matlab :session *MATLAB*
|
||||
#+PROPERTY: header-args:matlab+ :comments org
|
||||
#+PROPERTY: header-args:matlab+ :exports both
|
||||
@@ -78,17 +79,17 @@ Measurement is in V?
|
||||
channel = 12;
|
||||
|
||||
figure;
|
||||
ax1 = subaxis(3,1,1);
|
||||
ax1 = subplot(3,1,1);
|
||||
plot(freq_frf, abs(frf_hexa_y(:, channel)))
|
||||
set(gca, 'Xscale', 'log'); set(gca, 'Yscale', 'log');
|
||||
|
||||
ax2 = subaxis(3,1,2);
|
||||
ax2 = subplot(3,1,2);
|
||||
plot(freq_frf, mod(180/pi*phase(frf_hexa_y(:, channel))+180, 360)-180)
|
||||
set(gca, 'Xscale', 'log');
|
||||
ylim([-180 180]);
|
||||
yticks([-180:90:180]);
|
||||
|
||||
ax3 = subaxis(3,1,3);
|
||||
ax3 = subplot(3,1,3);
|
||||
plot(freq_frf, coh_hexa_y(:, channel))
|
||||
set(gca, 'Xscale', 'log');
|
||||
|
||||
@@ -99,10 +100,10 @@ Measurement is in V?
|
||||
|
||||
#+begin_src matlab :exports none :results none
|
||||
figure;
|
||||
ax1 = subaxis(2,1,1);
|
||||
ax1 = subplot(2,1,1);
|
||||
plot(freq_frf, abs(frf_marble_z(:, 4)))
|
||||
set(gca, 'Xscale', 'log'); set(gca, 'Yscale', 'log')
|
||||
ax2 = subaxis(2,1,2);
|
||||
ax2 = subplot(2,1,2);
|
||||
plot(freq_frf, mod(180/pi*phase(frf_marble_z(:, 4))+180, 360)-180)
|
||||
linkaxes([ax1,ax2],'x');
|
||||
ylim([-180 180]);
|
||||
|
Reference in New Issue
Block a user