bil

From DavinciWiki
(Difference between revisions)
Jump to: navigation, search
 
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{DavinciWiki_Function}}
+
{{DavinciWiki_Function|
[[category:C_Programs]]
+
Convert an object to BIL organization
 +
|
 +
Arguments: Any three dimensional numeric array
 +
 +
Return Value: The same array reorganized to BIL
 +
|
 +
[[Syntax]]: bil(object = VAL)
 +
 +
The bil() function copies and converts an object to BIL organization.
 +
 +
This function is equivalent to org(object=VAL, org=BIL).
 +
 +
The difference in organization may not be obvious to the user.
 +
|
 +
  dv> a
 +
  4x3x2 array of float, bsq format [96 bytes]
 +
  0.00000 1.00000 2.00000 3.00000
 +
  4.00000 5.00000 6.00000 7.00000
 +
  8.00000 9.00000 10.0000 11.0000
 +
 +
  0.0623035      0.193265        0.556094        0.305909
 +
  0.899650        0.912855        0.767901        0.313552
 +
  0.887302        0.487092        0.0167915      0.0861828
 +
 +
  dv> b=bil(a)
 +
  4x3x2 array of float, bil format [96 bytes]
 +
  0.00000 1.00000 2.00000 3.00000
 +
  4.00000 5.00000 6.00000 7.00000
 +
  8.00000 9.00000 10.0000 11.0000
 +
 +
  0.0623035      0.193265        0.556094        0.305909
 +
  0.899650        0.912855        0.767901        0.313552
 +
  0.887302        0.487092        0.0167915      0.0861828
 +
|
 +
[[Image:bil.jpg]]
 +
|
 +
|
 +
*[[bsq]]
 +
*[[bip]]
 +
|
 +
|
 +
}}
 
[[category:Functions]]
 
[[category:Functions]]
 +
[[category:Davinci Core]]
 
[[category:Format Conversion]]
 
[[category:Format Conversion]]
 +
[[category:64-bit]]

Latest revision as of 11:10, 6 July 2009



64-bit SafeYes

Description

Convert an object to BIL organization

Arguments and Return Values

Arguments: Any three dimensional numeric array

Return Value: The same array reorganized to BIL

Usage

Syntax: bil(object = VAL)

The bil() function copies and converts an object to BIL organization.

This function is equivalent to org(object=VAL, org=BIL).

The difference in organization may not be obvious to the user.

Examples

 dv> a
 4x3x2 array of float, bsq format [96 bytes]
 0.00000 1.00000 2.00000 3.00000
 4.00000 5.00000 6.00000 7.00000
 8.00000 9.00000 10.0000 11.0000

 0.0623035       0.193265        0.556094        0.305909
 0.899650        0.912855        0.767901        0.313552
 0.887302        0.487092        0.0167915       0.0861828

 dv> b=bil(a)
 4x3x2 array of float, bil format [96 bytes]
 0.00000 1.00000 2.00000 3.00000
 4.00000 5.00000 6.00000 7.00000
 8.00000 9.00000 10.0000 11.0000

 0.0623035       0.193265        0.556094        0.305909
 0.899650        0.912855        0.767901        0.313552
 0.887302        0.487092        0.0167915       0.0861828

Images

bil.jpg

DavinciWiki Mini-Nav Bar

Contents


Contact Developers

  • davinci-dev [AT] mars.asu.edu

All other topics

  • See navigation on the left

Related Functions

Recent Core Changes

Modified On: 07-06-2009

Personal tools