VirtualMatrix.IFormat(String) Method

Top 

Description

Converts the integer values contained within the calling VirtualMatrix into a string based on the format specifiers given by formatString. If values in the calling VirtualMatrix are not integers, only the integer parts of the values will be used. Matrix columns will be delimited using a space, and rows will be delimited with a newline.

 

Timing Precision Mode

This page describes functionality in nanosecond timing precision mode.

Click here to see the documentation for this object in millisecond timing precision mode.

 

Method Signature

VirtualMatrix.IFormat(

String formatString)

 

 

Arguments

formatString


Description:

Format specifier to use when converting the calling VirtualMatrix into a String. The format specifiers are standard C/C++ specifiers as used with the sprintf function.

 

 

 

Return Value

Type:

string

 

 

Returns a String containing the converted version of the calling VirtualMatrix.

 

Syntax

myString1 = [1,2; 3,4].IFormat(myString2);

 

 

See also

VirtualMatrix Object

VirtualMatrix.IFormat