Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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
    BertrandNinjaTrader Customer Service

    Comment


      #3
      I understand it totally.

      Thanks a lot Bertrand for the suggestions

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by wzgy0920, 04-20-2024, 06:09 PM
      2 responses
      27 views
      0 likes
      Last Post wzgy0920  
      Started by wzgy0920, 02-22-2024, 01:11 AM
      5 responses
      32 views
      0 likes
      Last Post wzgy0920  
      Started by wzgy0920, 04-23-2024, 09:53 PM
      2 responses
      49 views
      0 likes
      Last Post wzgy0920  
      Started by Kensonprib, 04-28-2021, 10:11 AM
      5 responses
      193 views
      0 likes
      Last Post Hasadafa  
      Started by GussJ, 03-04-2020, 03:11 PM
      11 responses
      3,235 views
      0 likes
      Last Post xiinteractive  
      Working...
      X