Hai

How to use 2 dimensional Array in QwtPlot. setData.........


Qt Code:
  1. double sn[ points ];
  2. double sg[ points ];
  3.  
  4. m_curve->setData(sn,sg,points);
  5. .
  6. .
  7.  
  8.  
  9. // I want two dimensional Array like
  10.  
  11. double sn[total][points];
  12. .
  13. .
  14. m_curve->setData(sn[][],sn[][],points); //error..
To copy to clipboard, switch view to plain text mode 

help please


R.Suresh
India