Create a Bloomberg connection, and then retrieve information for the last price
field.
Create the Bloomberg connection using the Bloomberg Desktop C++ interface.
c = bloomberg;
Return data as a table by setting the DataReturnFormat
property of the bloomberg object. If you do not set this
property, the fieldsearch function returns data as a cell
array.
c.DataReturnFormat = 'table';
Return information for the search term
LAST_PRICE.
f = 'LAST_PRICE';
d = fieldsearch(c,f);
Display the first three rows of the field information in
d.