Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Matrix definition

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Matrix definition

    Hi ninjas,

    In order to be more efficient in calculations and memory used, I'm considering really to create and managing a matrix, which it'd be simply an array of arrays, called jagged array. Since I'm not advanced programmer, I'd like to hear some advise regarding to some doubts:

    1. Is is possible to create a simple matrix in NT, lets say 5X5X5 ? If so, could you give me a NT link to study ? if not, is it possible creating arrays in two dimensions?

    2. I was reading about creating matrix, which it can be done by a couple ways:
    A) double[][] m = new double[3][];
    m[0] = new double[2];
    m[1] = new double[2];

    B) double[,] m = new double[3,2];
    m[2,1] = 5.0;

    C) public class MyMatrix
    {
    int m; // number rows
    int n; // number columns
    data[][]; // the values
    ...
    Which one would you recommend to use in Ninja ? could you give me an useful link ?

    I look forward to read your hints about it

    Thanks

    #2
    pstrusi, unfortunately this is more a general C# area which we would not be able to support officially.

    That being said the topic is discussed in the community here amongst members, you might want to look into - http://www.ninjatrader.com/support/f...ad.php?t=44651

    Generally an overview over the available collection types and their pros and cons could be seen on the following external link - http://geekswithblogs.net/BlackRabbi...ion-class.aspx

    Comment


      #3
      I understand it totally.

      Thanks a lot Bertrand for the suggestions

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      649 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      370 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      109 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      574 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      576 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X