Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Scroll tablelayout
sortDirectionASC
repeatTableHeadersdefaultstyle
widths8%, 92%
style
sortByColumn1
sortEnabledfalse
cellHighlightingtrue

...

Scroll tablelayout
style
sortDirectionASC
repeatTableHeadersdefault
widths10%, 15%, 14%, 13%, 48%
style
sortByColumn1
sortEnabledfalse
cellHighlightingtrue

...

Return value

vector

Examples

Code Block
languagetext
vector $vec;

...


int $fileID;

...


int $fileID = `fileOpen "C:/FileTesting.txt" "r"`;
  

...

// Read the vector

...


// The -delims flag assumes you are reading from a text file 

...


$vec = `readVec $fileID -delim ","`;

...


fileClose $fileID;
  

...


// Display the value

...


print $vec;

Scroll pagebreak

Additional information

...