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 CarlTrading, 03-31-2026, 09:41 PM
      1 response
      149 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      84 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      129 views
      2 likes
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      125 views
      1 like
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      102 views
      0 likes
      Last Post CarlTrading  
      Working...
      X