~ubuntu-branches/debian/sid/octave3.0/sid

« back to all changes in this revision

Viewing changes to doc/interpreter/dynamic.txi

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Weber
  • Date: 2008-08-12 22:28:01 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080812222801-b3myaxymt2k5m709
Tags: 1:3.0.1-6lenny1
Allow libhdf5-openmpi-dev to satisfy Octave's hdf5 dependency (closes:
#494139)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
@c Copyright (C) 2007 John W. Eaton and David Bateman
 
1
@c Copyright (C) 2007, 2008 John W. Eaton and David Bateman
2
2
@c Copyright (C) 2007 Paul Thomas and Christoph Spiel
3
3
@c
4
4
@c This file is part of Octave.
1635
1635
    @{
1636
1636
      for (octave_idx_type j = 0; j < n; j++)
1637
1637
        @{
1638
 
          a_matrix(row,column) = (i+1)*10 + (j+1);
 
1638
          a_matrix (i, j) = (i + 1) * 10 + (j + 1);
1639
1639
        @}
1640
1640
    @}
1641
1641
  std::cout << a_matrix;