Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Knowledge Base Home
  • Contact Us
  • Home
  • Moku:Lab
  • Software integrations
  • MATLAB examples

MATLAB: Frequency Response Analyzer (plotting)

Written by Paul Cracknell

Updated at February 10th, 2021

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Moku:Go
    Moku:Go Arbitrary Waveform Generator Moku:Go Data Logger Moku:Go Frequency Response Analyzer Moku:Go Logic Analyzer & Pattern Generator Moku:Go Oscilloscope & Voltmeter Moku:Go PID Controller Moku:Go Spectrum Analyzer Moku:Go Waveform Generator Moku:Go Power Supplies Moku:Go Digital Filter Box Moku:Go FIR Filter Builder Moku:Go Lock-in Amplifier
  • Moku:Lab
    Windows Moku:Lab general Moku:Lab Instruments iPad app Software integrations
  • Moku:Pro
    Moku:Pro Instruments
+ More

Example MATLAB script to implement a plotting Frequency Response Analyzer

%% Plotting Frequency Response Example
%
% This example demonstrates how you can generate output sweeps using the
% Frequency Response Analyzer instrument, and view transfer function data in real-time.
%
% (c) 2017 Liquid Instruments Pty. Ltd.
%
%% Connect to your Moku
ip = input('Please enter your Moku:Lab IP address: ', 's');

% Connect to your Moku and deploy the desired instrument
m = MokuFrequencyResponseAnalyzer(ip);

%% Configure the instrument
% Set output sweep amplitudes
m.set_output(1,0.5); % Channel 1, 0.5Vpp
m.set_output(2,0.5); % Channel 2, 0.5Vpp

% Set output sweep configuration
% 1MHz - 100MHz, 512 sweep points
% Logarithmic sweep ON
% 1msec averaging time, 1msec settling time
% 1 averaging cycle, 1 settling cycle
m.set_sweep('f_start', 1e6, 'f_end', 100e6, 'sweep_points', 512, ...
'sweep_log', 'true', 'averaging_time', 1e-3, 'settling_time', 1e-3, ...
'averaging_cycles', 1, 'settling_cycles', 1);

% Start continuous sweeping (single sweep OFF)
m.start_sweep('single','false');

%% Set up plots
% Get initial data to set up plots
data = m.get_data();

% Set up the plots
figure;

magnitude_graph = subplot(2,1,1);
ms = semilogx(magnitude_graph, data.frequency,data.ch1.magnitude_dB, data.frequency, data.ch2.magnitude_dB);
xlabel(magnitude_graph,'Frequency (Hz)');
ylabel(magnitude_graph,'Magnitude (dB)');

phase_graph = subplot(2,1,2);
ps = semilogx(phase_graph, data.frequency, data.ch1.phase, data.frequency, data.ch2.phase);
xlabel(phase_graph,'Frequency (Hz)');
ylabel(phase_graph,'Phase (cyc)');

%% Receive and plot new data frames
while 1
data = m.get_data();
set(ms(1),'XData',data.frequency,'YData',data.ch1.magnitude_dB);
set(ms(2),'XData',data.frequency,'YData',data.ch2.magnitude_dB);
set(ps(1),'XData',data.frequency,'YData',data.ch1.phase);
set(ps(2),'XData',data.frequency,'YData',data.ch2.phase);
axis(magnitude_graph,'tight');
axis(phase_graph,'tight');
pause(0.1);
end
moku:lab

Was this article helpful?

Yes
No

Related Articles

  • MATLAB: Arbitrary Waveform Generator
  • MATLAB datalogger and saving the logfile
  • MATLAB: Spectrum Analyzer
  • MATLAB: Oscilloscope (plotting)

Sitemap

  • Moku:Lab
  • Instruments
  • Software
  • Company
  • Support
  • Store
  • Terms & Conditions
  • Privacy Policy

Offices

United States
+1 (619) 332-6230
740 Lomas Santa Fe Dr
Suite 102
Solana Beach, CA 92075

Australia
+61 2 6171 9730
243 Northbourne Avenue
Suite 2
Lyneham, ACT 2602

Follow us

Youtube LinkedIn

官方微信

Contact us
© 2021 Liquid Instruments. All rights reserved.

Definition by Author

0
0
Expand