Main Content

get

Retrieve properties of FRED connection objects

Syntax

value = get(c,'PropertyName')
value = get(c)

Arguments

c

FRED® connection object created with fred.

'PropertyName'

A MATLAB® character vector, string, cell array of character vectors, or string array containing property names. Property names are:

  • 'url'

  • 'ip'

  • 'port'

Description

value = get(c,'PropertyName') returns a MATLAB structure containing the value of the specified properties for the FRED connection object.

value = get(c) returns the value for all properties.

Examples

Establish a connection, c, to a FRED data server.

c = fred('https://fred.stlouisfed.org/')

Retrieve the port and IP address for the connection.

p = get(c,{'port','ip'})
p = 
     port: 8194
     ip: 111.222.33.444

Version History

Introduced in R2006b