Ignore:
Timestamp:
Dec 11, 2009, 9:57:10 AM (16 years ago)
Author:
ansari
Message:

Ajout options afichage cdreal,cdimag,cdphas,cdmod,cdmod2 pour tableaux complexes, Reza 11/12/2009

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/nomtarradapter.cc

    r3661 r3713  
    224224  TVector<T>* v = new TVector<T>(arr, true);  // on partage les donnees
    225225  dopt = "thinline," + dopt;
    226   return( new PIYfXDrawer( new POTVectorAdapter<T>(v, true), NULL, true) );
     226  return( new PIYfXDrawer( new POTVectorAdapter<T>(v, true, StringToCmplxDispOption(dopt)), NULL, true) );
    227227}
    228228else {
     
    234234/* --Methode-- */
    235235template <class T>
    236 P2DArrayAdapter* NOMAdapter_TArray<T>::Get2DArray(string &)
     236P2DArrayAdapter* NOMAdapter_TArray<T>::Get2DArray(string & dopt)
    237237{
    238238TArray<T> arr(*mArr, true);    // on partage les donnees
     
    241241  // On peut en faire un tableau 2-D ...
    242242  TMatrix<T>* m = new TMatrix<T>(arr, true);  // on partage les donnees
    243   return ( new POTMatrixAdapter<T>(m, true) );
     243  return ( new POTMatrixAdapter<T>(m, true, StringToCmplxDispOption(dopt)) );
    244244}
    245245else {
Note: See TracChangeset for help on using the changeset viewer.