IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Simulink Discussion :

Automatiser un traitement LPC


Sujet :

Simulink

  1. #1
    Membre du Club
    Profil pro
    Étudiant
    Inscrit en
    Janvier 2008
    Messages
    76
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Janvier 2008
    Messages : 76
    Points : 50
    Points
    50
    Par défaut Automatiser un traitement LPC
    Bonjour,

    Je suis débutant sous matlab, je tiens à le préciser des le début !

    Dans le cadre d'un projet de reconnaissance vocale, j'utilise simulink pour le traitement lpc d'un son enregistrer depuis matlab...

    J'ai donc une fonction matlab qui me permet d'enregister mes sons, après chancun des enregitrements, je dois ouvrir mon fichier traitementlpc.mld, pour calculer les coefficients lpc.

    C'est un peu rébarbatif comme technique, n'y a-t-il pas moyen d'automatiser le traitement ? comment puis-je appeler en "boucle" ce fichier .mld dans mon fichier de focntion .m ?

    Merci d'avance pour votre aide !

    Seb

  2. #2
    Membre du Club
    Profil pro
    Étudiant
    Inscrit en
    Janvier 2008
    Messages
    76
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Janvier 2008
    Messages : 76
    Points : 50
    Points
    50
    Par défaut
    Bonjour,

    J'ai un peu avancé de mon coté, grâce à la la fonction sim() sous matlab, je peux appeler mon script simulink, !

    par contre j'ai un petit souci, voici l'erreur ... quelqu'un peu m'aider ?

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    Warning: Loading model
    'traitement_LPC' generated with a
    newer version (7.4) of Simulink. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: traitement_LPC.mdl, line
    22: block_diagram does not have a
    parameter named
    'MaxMDLFileLineLength'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: traitement_LPC.mdl, line
    69: block_diagram does not have a
    parameter named
    'CovForceBlockReductionOff'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: In instantiating linked
    block
    'traitement_LPC/Autocorrelation' :
    Autocorrelation block (mask) does
    not have a parameter named
    'LibraryVersion'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: In instantiating linked
    block
    'traitement_LPC/Autocorrelation' :
    Autocorrelation block (mask) does
    not have a parameter named
    'outputDataTypeStr'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: In instantiating linked
    block
    'traitement_LPC/Autocorrelation' :
    Autocorrelation block (mask) does
    not have a parameter named
    'outputLastDataTypeStr'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: In instantiating linked
    block
    'traitement_LPC/Autocorrelation' :
    Autocorrelation block (mask) does
    not have a parameter named
    'outputMin'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: In instantiating linked
    block
    'traitement_LPC/Autocorrelation' :
    Autocorrelation block (mask) does
    not have a parameter named
    'outputMax'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: In instantiating linked
    block
    'traitement_LPC/Autocorrelation' :
    Autocorrelation block (mask) does
    not have a parameter named
    'accumDataTypeStr'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: In instantiating linked
    block
    'traitement_LPC/Autocorrelation' :
    Autocorrelation block (mask) does
    not have a parameter named
    'accumLastDataTypeStr'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: In instantiating linked
    block
    'traitement_LPC/Autocorrelation' :
    Autocorrelation block (mask) does
    not have a parameter named
    'prodOutputDataTypeStr'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: In instantiating linked
    block
    'traitement_LPC/Autocorrelation' :
    Autocorrelation block (mask) does
    not have a parameter named
    'prodOutputLastDataTypeStr'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: In instantiating linked
    block
    'traitement_LPC/Chevauchement' :
    Buffer block (mask) does not have a
    parameter named 'LibraryVersion'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: In instantiating linked
    block 'traitement_LPC/Fenetre  de
    Hamming' : Window Function block
    (mask) does not have a parameter
    named 'LibraryVersion'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: In instantiating linked
    block 'traitement_LPC/Levinson-
    Durbin' : Levinson-Durbin block
    (mask) does not have a parameter
    named 'LibraryVersion'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: In instantiating linked
    block 'traitement_LPC/Pre-Emphasis'
    : Digital Filter block (mask) does
    not have a parameter named
    'LibraryVersion'. 
    > In apprentissage_systeme at 62
      In run at 57
    Warning: In instantiating linked
    block 'traitement_LPC/Signal From
    Signal de la voix acquis' : Signal
    From Workspace block (mask) does
    not have a parameter named
    'LibraryVersion'. 
    > In apprentissage_systeme at 62
      In run at 57
    En gros c'est un problème de version ... mais comment palier à ce problème ?

    [edit] erreur trouvée !

    merci

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Automatisation de traitement SQL
    Par _Agrid dans le forum Débuter
    Réponses: 2
    Dernier message: 09/03/2009, 20h17
  2. Automatisation de traitement en VB
    Par saidino dans le forum VB 6 et antérieur
    Réponses: 15
    Dernier message: 15/05/2008, 21h03
  3. Macro - Automatiser un traitement
    Par Desraux dans le forum Macros et VBA Excel
    Réponses: 1
    Dernier message: 02/12/2007, 20h27
  4. automatisation de traitement de données
    Par booskap dans le forum Macros et VBA Excel
    Réponses: 10
    Dernier message: 22/08/2007, 09h57
  5. Automatisation de traitement de log => tableur
    Par Gokukan dans le forum Langages de programmation
    Réponses: 1
    Dernier message: 30/05/2007, 18h51

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo