~ubuntu-branches/ubuntu/utopic/blitz++/utopic

« back to all changes in this revision

Viewing changes to doc/arrays-io.texi

  • Committer: Package Import Robot
  • Author(s): Christophe Trophime
  • Date: 2012-07-06 09:15:30 UTC
  • mfrom: (11.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20120706091530-vzrb8zf0vpbf8tp9
Tags: 1:0.10-1
* New upstream release
  Closes: #679407
* debian/rules:
  - update for new release
  - add override_dh_auto_test target
  - regenerate configure and Makefile.am
* debian/control:
  - add libtool, automake to BuildDepends
* debian/libblitz-doc.install
  - modify path for html files
* remove uneeded patches
* add examples.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
 
@node Array I/O
 
2
@node Array I/O, Array storage, Array globals, Arrays
3
3
@section Inputting and Outputting Arrays
4
4
 
5
5
@subsection Output formatting
34
34
@cindex Array restoring from istream
35
35
 
36
36
Arrays may be restored from an istream using the @code{>>} operator.
37
 
@strong{Note:} you must know the dimensionality of the array being restored
 
37
 
 
38
@strong{Caution:} you must know the dimensionality of the array being restored
38
39
from the stream.  The @code{>>} operator expects an array in the same input
39
40
format as generated by the @code{<<} operator, namely:
40
41
 
67
68
@include examples/io.texi
68
69
@end smallexample
69
70
 
70
 
@strong{Note:} The storage order and starting indices are not restored from
 
71
@strong{Caution:} The storage order and starting indices are not restored from
71
72
the input stream.  If you are restoring (for example) a Fortran-style array,
72
73
you must create a Fortran-style array, and then restore it.  For example,
73
74
this code restores a Fortran-style array from the standard input stream: