Ejemplo n.º 1
0
        public object Clone()
        {
            EdfSignalInfoRaw newSignalInfoRaw = new EdfSignalInfoRaw
            {
                SignalLabel    = SignalLabel,
                TransducerType = TransducerType,
                PhysiDim       = PhysiDim,
                PhysiMax       = PhysiMax,
                PhysiMin       = PhysiMin,
                DigiMax        = DigiMax,
                DigiMin        = DigiMin,
                PreFilter      = PreFilter,
                NrSamples      = NrSamples,
                Reserved       = Reserved
            };

            return(newSignalInfoRaw);
        }
Ejemplo n.º 2
0
 public object Clone()
 {
     EdfSignalInfoRaw newSignalInfoRaw = new EdfSignalInfoRaw
                                     {
                                       SignalLabel = SignalLabel,
                                       TransducerType = TransducerType,
                                       PhysiDim = PhysiDim,
                                       PhysiMax = PhysiMax,
                                       PhysiMin = PhysiMin,
                                       DigiMax = DigiMax,
                                       DigiMin = DigiMin,
                                       PreFilter = PreFilter,
                                       NrSamples = NrSamples,
                                       Reserved = Reserved
                                     };
       return newSignalInfoRaw;
 }