adi.AD9363.Rx

The adi.AD9363.Rx System object is a signal source that can receive
complex data from the AD9364.

rx = adi.AD9363.Rx;
rx = adi.AD9363.Rx('uri','ip:192.168.2.1');

AD9363 Datasheet

Creation

The class can be instantiated in the following way with and without property name value pairs.

dev = adi.AD9363.Rx
dev = adi.AD9363.Rx(Name, Value)
Properties
Unless otherwise indicated, properties are non-tunable, which means you cannot change their values after calling the object. Objects lock when you call them, and the release function unlocks them.

If a property is tunable, you can change its value at any time.

For more information on changing property values, see System Design in MATLAB Using System Objects.
Example Usage
%% Rx set up
rx = adi.adi.AD9363.Rx.Rx('uri','ip:analog.local');
rx.CenterFrequency = 1e9;
rx.EnabledChannels = 1;
%% Run
for k=1:10
    valid = false;
    while ~valid
        [out, valid] = rx();
    end
end