Changes between Initial Version and Version 1 of Ticket #3464, comment 7


Ignore:
Timestamp:
2015-09-18T08:05:33Z (10 years ago)
Author:
Rüdiger Franke

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified Ticket #3464, comment 7

    initial v1  
    1313This should read (at least):
    1414{{{#!C++
    15   static double arr_data[][] = {{1,2,3,4},{5,6,7,8}};
     15  static double arr_data[] = {1,2,3,4, 5,6,7,8};
    1616  StatArrayDim2<double,2,4> arr;
    1717  assignRowMajorData(arr_data, arr);
     
    1919One can imagine a further improvement with:
    2020{{{#!C++
    21   static double arr_data[][] = {{1,5}, {2,6}, {3,7}, {4,8}};
     21  static double arr_data[] = {1,5, 2,6, 3,7, 4,8};
    2222  StatArrayDim2<double,2,4, true> arr(arr_data);
    2323}}}