STRFLAT Description
This function flattens a string array into a scalar string. Each
row of the original array is copied into the new string, and
separated by newline characters. Category
string processing Inputs
string: A string array Outputs
A scalar string, containing each row of string separated by newline
characters. Keyword Parameters
separator: Set to a scalar string to separate rows in the input
array by this, instead of newline characters.
Modification History
Jan 2010: Written by Chris Beaumont
July 2010: Added separator keyword. cnb