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 :

[Débutante] Matlab se ferme au lancement de mon GUI


Sujet :

Simulink

  1. #1
    Membre à l'essai
    Profil pro
    Inscrit en
    Juin 2007
    Messages
    25
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2007
    Messages : 25
    Points : 13
    Points
    13
    Par défaut [Débutante] Matlab se ferme au lancement de mon GUI
    Bonjour,

    J'ai fait un gui avec le GUIDE de MatLab mais quand je lance mon fichier, MatLab se met à tourner en boucle sans jamais arrêter et finit par se fermer. Quelqu'un voit-il d'où ça peut venir ?? Voici mon code et je travaille sur la version 7.2.0.232(R2006a) de MatLab.

    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
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
     
    function varargout = essai(varargin)
    % ESSAI M-file for essai.fig
    %      ESSAI, by itself, creates a new ESSAI or raises the existing
    %      singleton*.
    %
    %      H = ESSAI returns the handle to a new ESSAI or the handle to
    %      the existing singleton*.
    %
    %      ESSAI('CALLBACK',hObject,eventData,handles,...) calls the local
    %      function named CALLBACK in ESSAI.M with the given input arguments.
    %
    %      ESSAI('Property','Value',...) creates a new ESSAI or raises the
    %      existing singleton*.  Starting from the left, property value pairs are
    %      applied to the GUI before essai_OpeningFunction gets called.  An
    %      unrecognized property name or invalid value makes property application
    %      stop.  All inputs are passed to essai_OpeningFcn via varargin.
    %
    %      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
    %      instance to run (singleton)".
    %
    % See also: GUIDE, GUIDATA, GUIHANDLES
     
    % Edit the above text to modify the response to help essai
     
    % Last Modified by GUIDE v2.5 03-Jul-2007 16:17:41
     
    % Begin initialization code - DO NOT EDIT
    gui_Singleton = 1;
    gui_State = struct('gui_Name',       mfilename, ...
                       'gui_Singleton',  gui_Singleton, ...
                       'gui_OpeningFcn', @essai_OpeningFcn, ...
                       'gui_OutputFcn',  @essai_OutputFcn, ...
                       'gui_LayoutFcn',  [] , ...
                       'gui_Callback',   []);
    if nargin && ischar(varargin{1})
        gui_State.gui_Callback = str2func(varargin{1});
    end
     
    if nargout
        [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
    else
        gui_mainfcn(gui_State, varargin{:});
    end
    % End initialization code - DO NOT EDIT
     
     
    % --- Executes just before essai is made visible.
    function essai_OpeningFcn(hObject, eventdata, handles, varargin)
    % This function has no output args, see OutputFcn.
    % hObject    handle to figure
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    % varargin   command line arguments to essai (see VARARGIN)
     
    fig = handles.essai
     
    model_open(handles)
     
    % Choose default command line output for essai
    handles.output = hObject;
     
    % Update handles structure
    guidata(hObject, handles);
     
    % UIWAIT makes essai wait for user response (see UIRESUME)
    % uiwait(handles.essai);
     
     
    % --- Outputs from this function are returned to the command line.
    function varargout = essai_OutputFcn(hObject, eventdata, handles) 
    % varargout  cell array for returning output args (see VARARGOUT);
    % hObject    handle to figure
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Get default command line output from handles structure
    varargout{1} = handles.output;
     
    %endfunction essai_OutputFcn
     
    % ------------------------------------------------------------
    % Ensure that the Simulink model is open
    % ------------------------------------------------------------
    function model_open(handles)
    % Make sure the diagram is still open
      if  isempty(find_system('Name','Habitation')),
        open_system('Habitation')
        set_param('Habitation')
        figure(handles.essai)
        % Put  values of P, Ti, kSonde, TauSonde, kThermo, TauThermo,T°ext, 
        % consigne, P appareil from the GUI into the Block dialogs
        set_param('Habitation',...
                                get(handles.PCurrentValue,'String'))
        set_param('Habitation',...
                                get(handles.TiCurrentValue,'String'))
        set_param('Habitation',...
                                get(handles.kSondeCurrentValue,'String'))
        set_param('Habitation',...
                                get(handles.TauSondeCurrentValue,'String'))  
        set_param('Habitation',...
                                get(handles.kThermoCurrentValue,'String'))
        set_param('Habitation',...
                                get(handles.TauThermoCurrentValue,'String')) 
        set_param('Habitation',...
                                get(handles.TextCurrentValue,'String')) 
        set_param('Habitation',...
                                get(handles.ConsigneCurrentValue,'String'))  
        set_param('Habitation',...
                                get(handles.PApCurrentValue,'String'))                     
      end
    %endfunction model_open
     
    % --- Executes on button press in pushbutton.
    function pushbutton_Callback(hObject, eventdata, handles)
     
    h =findobj(gcf,'Tag','P')
    p=str2num(get(h,'String'));
    h=findobj(gcf,'Tag','I')
    I=str2num(get(h,'String'));
    h=findobj(gcf,'Tag','kSonde')
    ks=str2num(get(h,'String'));
    h=findobj(gcf,'Tag','TauSonde')
    tauS=str2num(get(h,'String'));
    h=findobj(gcf,'Tag','kThermo')
    kt=str2num(get(h,'String'));
    h=findobj(gcf,'Tag','TauThermo')
    tauT=str2num(get(h,'String'));
    h=findobj(gcf,'Tag','Text')
    text=str2num(get(h,'String'));
    h=findobj(gcf,'Tag','consigne')
    c=str2num(get(h,'String'));
    h=findobj(gcf,'Tag','PAp')
    pap=str2num(get(h,'String'));
    sim('Habitation', p, I, ks, tauS, kt, tauT, c, text, pap);
    plot(tout,TM)
    axis([0 Tsimu 0 1])
    plot(tout,TAmb)
    axis([0 Tsimu 15 25])
     
    function PValue_Callback(hObject, eventdata, handles)
    % hObject    handle to edit1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Hints: get(hObject,'String') returns contents of edit1 as text
    %        str2double(get(hObject,'String')) returns contents of edit1 as a double
     
    % Ensure model is open
      model_open(handles)
     
    % Get the new value for P
      NewStrVal = get(hObject,'String');  
      NewVal = str2double(NewStrVal);
     
    % Set the value of the PValue to the new value
      set(handles.PValue,'String',NewVal)
     
    % Set the Gain parameter of P to the new value
      set_param('Habitation/P','P',NewStrVal)
     
    % --- Executes during object creation, after setting all properties.
    function PValue_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to edit1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
     
    % Hint: edit controls usually have a white background on Windows.
    %       See ISPC and COMPUTER.
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
     
    function TiValue_Callback(hObject, eventdata, handles)
    % hObject    handle to edit2 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Hints: get(hObject,'String') returns contents of edit2 as text
    %        str2double(get(hObject,'String')) returns contents of edit2 as a double
     
    % Ensure model is open
      model_open(handles)
     
    % Get the new value for Ti
      NewStrVal = get(hObject,'String');  
      NewVal = str2double(NewStrVal);
     
    % Set the value of the TiValue to the new value
      set(handles.TiValue,'String',NewVal)
     
    % Set the Gain parameter of Ti to the new value
      set_param('Habitation/Ti','Ti',NewStrVal)
     
    % --- Executes during object creation, after setting all properties.
    function TiValue_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to edit2 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
     
    % Hint: edit controls usually have a white background on Windows.
    %       See ISPC and COMPUTER.
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
    function kSondeValue_Callback(hObject, eventdata, handles)
    % hObject    handle to edit3 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Hints: get(hObject,'String') returns contents of edit3 as text
    %        str2double(get(hObject,'String')) returns contents of edit3 as a double
     
    % Ensure model is open
      model_open(handles)
     
    % Get the new value for kSonde
      NewStrVal = get(hObject,'String');  
      NewVal = str2double(NewStrVal);
     
    % Set the value of the kSondeValue to the new value
      set(handles.kSondeValue,'String',NewVal)
     
    % Set the parameter of kSonde to the new value
      set_param('Habitation/kSonde','kSonde',NewStrVal)
     
    % --- Executes during object creation, after setting all properties.
    function kSondeValue_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to edit3 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
     
    % Hint: edit controls usually have a white background on Windows.
    %       See ISPC and COMPUTER.
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
    function TauSondeValue_Callback(hObject, eventdata, handles)
    % hObject    handle to edit4 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Hints: get(hObject,'String') returns contents of edit4 as text
    %        str2double(get(hObject,'String')) returns contents of edit4 as a double
     
    % Ensure model is open
      model_open(handles)
     
    % Get the new value for TauSonde
      NewStrVal = get(hObject,'String');  
      NewVal = str2double(NewStrVal);
     
    % Set the value of the TauSondeValue to the new value
      set(handles.TauSondeValue,'String',NewVal)
     
    % Set the parameter of TauSonde to the new value
      set_param('Habitation/TauSonde','TauSonde',NewStrVal)
     
    % --- Executes during object creation, after setting all properties.
    function TauSondeValue_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to edit4 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
     
    % Hint: edit controls usually have a white background on Windows.
    %       See ISPC and COMPUTER.
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
    function kThermoValue_Callback(hObject, eventdata, handles)
    % hObject    handle to edit5 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Ensure model is open
      model_open(handles)
     
    % Get the new value for kThermo
      NewStrVal = get(hObject,'String');  
      NewVal = str2double(NewStrVal);
     
    % Set the value of the kThermoValue to the new value
      set(handles.kThermoValue,'String',NewVal)
     
    % Set the parameter of kThermo to the new value
      set_param('Habitation/kThermo','kThermo',NewStrVal)
     
    % Hints: get(hObject,'String') returns contents of edit5 as text
    %        str2double(get(hObject,'String')) returns contents of edit5 as a double
     
     
    % --- Executes during object creation, after setting all properties.
    function kThermoValue_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to edit5 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
     
    % Hint: edit controls usually have a white background on Windows.
    %       See ISPC and COMPUTER.
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
     
    function TauThermoValue_Callback(hObject, eventdata, handles)
    % hObject    handle to edit6 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Hints: get(hObject,'String') returns contents of edit6 as text
    %        str2double(get(hObject,'String')) returns contents of edit6 as a double
     
    % Ensure model is open
      model_open(handles)
     
    % Get the new value for TauThermo
      NewStrVal = get(hObject,'String');  
      NewVal = str2double(NewStrVal);
     
    % Set the value of the TauThermoValue to the new value
      set(handles.TauThermoValue,'String',NewVal)
     
    % Set the parameter of kSonde to the new value
      set_param('Habitation/TauThermo','TauThermo',NewStrVal)
     
    % --- Executes during object creation, after setting all properties.
    function TauThermoValue_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to edit6 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
     
    % Hint: edit controls usually have a white background on Windows.
    %       See ISPC and COMPUTER.
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
    function consigneValue_Callback(hObject, eventdata, handles)
    % hObject    handle to edit7 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Hints: get(hObject,'String') returns contents of edit7 as text
    %        str2double(get(hObject,'String')) returns contents of edit7 as a double
     
    % Ensure model is open
      model_open(handles)
     
    % Get the new value for consigne
      NewStrVal = get(hObject,'String');  
      NewVal = str2double(NewStrVal);
     
    % Set the value of the consigneValue to the new value
      set(handles.consigneValue,'String',NewVal)
     
    % Set the parameter of consigne to the new value
      set_param('Habitation/consigne','consigne',NewStrVal)
     
     
    % --- Executes during object creation, after setting all properties.
    function consigneValue_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to edit7 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
     
    % Hint: edit controls usually have a white background on Windows.
    %       See ISPC and COMPUTER.
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
    function TextValue_Callback(hObject, eventdata, handles)
    % hObject    handle to edit8 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Hints: get(hObject,'String') returns contents of edit8 as text
    %        str2double(get(hObject,'String')) returns contents of edit8 as a double
     
    % Ensure model is open
      model_open(handles)
     
    % Get the new value for Text
      NewStrVal = get(hObject,'String');  
      NewVal = str2double(NewStrVal);
     
    % Set the value of the TextValue to the new value
      set(handles.TextValue,'String',NewVal)
     
    % Set the parameter of consigne to the new value
      set_param('Habitation/Text','Text',NewStrVal)
     
    % --- Executes during object creation, after setting all properties.
    function TextValue_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to edit8 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
     
    % Hint: edit controls usually have a white background on Windows.
    %       See ISPC and COMPUTER.
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
     
    function PApValue_Callback(hObject, eventdata, handles)
    % hObject    handle to edit9 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Hints: get(hObject,'String') returns contents of edit9 as text
    %        str2double(get(hObject,'String')) returns contents of edit9 as a double
     
    % Ensure model is open
      model_open(handles)
     
    % Get the new value for PAp
      NewStrVal = get(hObject,'String');  
      NewVal = str2double(NewStrVal);
     
    % Set the value of the consigneValue to the new value
      set(handles.PApValue,'String',NewVal)
     
    % Set the parameter of consigne to the new value
      set_param('Habitation/PAp','PAp',NewStrVal)
     
     
    % --- Executes during object creation, after setting all properties.
    function PApValue_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to edit9 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
     
    % Hint: edit controls usually have a white background on Windows.
    %       See ISPC and COMPUTER.
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
    % --- Executes on button press in pushbutton2.
    function pushbutton2_Callback(hObject, eventdata, handles)
    % hObject    handle to pushbutton2 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Close the GUI and any plot window that is open
      if isfield(handles,'PlotFigure') && ishandle(handles.PlotFigure),
        close(handles.PlotFigure);
      end
      close(handles.essai); 
     
    %endfunction pushbutton2_Callback

  2. #2
    Membre à l'essai
    Profil pro
    Inscrit en
    Juin 2007
    Messages
    25
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2007
    Messages : 25
    Points : 13
    Points
    13
    Par défaut
    un des messages d'erreur que je parviens à lire est le suivant :

    error in => ISPC at 33

    Mais la fonction ISPC est une fonction inclue dans MatLab non ??

  3. #3
    Expert éminent sénior
    Avatar de Caro-Line
    Profil pro
    Inscrit en
    Mars 2007
    Messages
    9 458
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2007
    Messages : 9 458
    Points : 14 830
    Points
    14 830
    Par défaut
    ispc est une fonction de Matlab ... sauf si tu en as créée une avec ce nom-là.
    Sinon pour essayer de débrouiller ton problème je te conseille d'utiliser le debuggueur (menu Debug) en mode "Always stop if error" ou en pas à pas.
    Règles du Forum

    Adepte de la maïeutique

  4. #4
    Membre du Club
    Profil pro
    Inscrit en
    Novembre 2006
    Messages
    101
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : Suisse

    Informations forums :
    Inscription : Novembre 2006
    Messages : 101
    Points : 61
    Points
    61
    Par défaut
    Re coucou

    Bon deja enleve tous les model_open(handles), franchement je les avais utlises et il me faisait plein d erreurs...!!! Et puis franchement ici ils ne servent pas a gd chose...!!
    MATLAB Version 7.3.0.267 (R2006b)
    Simulink Version 6.5 (R2006b)
    Sous Windows

  5. #5
    Membre à l'essai
    Profil pro
    Inscrit en
    Juin 2007
    Messages
    25
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2007
    Messages : 25
    Points : 13
    Points
    13
    Par défaut
    d'abord merci à tous les deux pour vos réponses, vous me redonnez un peu d'espoir... sinon j'ai suivi ton conseil Caro, mais en fait les variables de SImulink que je veux définir sont des constantes et du coup il ne les trouve pas. J'ai regardé des exemples, mais sur les exemples les valeurs de Simulink a définir sont souvent des 'gain'. Du coup je ne suis pas sûre de comment remplir mes constantes. J'ai mis cette ligne de code là :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    set_param('Habitation/P','P')
    Habitation est le nom de mon modèle simulin et P de ma constante, je vous mets en pièce jointe une capture de mon modèle simulink pour que ce soit un peu plus clair si c'est possible...
    Fichiers attachés Fichiers attachés

  6. #6
    Expert éminent sénior
    Avatar de Caro-Line
    Profil pro
    Inscrit en
    Mars 2007
    Messages
    9 458
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2007
    Messages : 9 458
    Points : 14 830
    Points
    14 830
    Par défaut
    C'est ton utilisation de set_param qui n'est pas bonne, il faut :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    set_param(nom_du_bloc,nom_du_parametre,valeur_du_parametre);
    Dans l'exemple que tu donnes, tu lui dit de "setter" le paramtre 'P' mais sans lui donner la valeur à lui attribuer.

    Un truc pour connaitre les paramètres de ton bloc :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
    get_param(bloc,'dialogparameters') %les paramètres que l'on rentre par boite de dialogue
    get_param(bloc,'objectparameters') %tous les autres paramètres
    Règles du Forum

    Adepte de la maïeutique

  7. #7
    Membre du Club
    Profil pro
    Inscrit en
    Novembre 2006
    Messages
    101
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : Suisse

    Informations forums :
    Inscription : Novembre 2006
    Messages : 101
    Points : 61
    Points
    61
    Par défaut
    Bon alors deja avec tes focntions pour leskelles ca a pas l air daller c est normal, tu ne prends pas en compte leur parametre propre...

    Ex pour la cste tu as ecrit :

    Code :
    set_param('Habitation/P','P')
    C est bien joli mais tu fais rien la... En fait pour cela tu dois ecrire :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    set_param('Habitation/P,'Value',num2str(NewVal))
    En fait pour les blocs constantes le parametre est 'Value'...

    @Caro : elle programme les callback la donc elle n a pas besoin de mettre une valeur tout de suite...Justement elle veut au contraire pouvoir les changer via le GUI !!!
    MATLAB Version 7.3.0.267 (R2006b)
    Simulink Version 6.5 (R2006b)
    Sous Windows

  8. #8
    Membre à l'essai
    Profil pro
    Inscrit en
    Juin 2007
    Messages
    25
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2007
    Messages : 25
    Points : 13
    Points
    13
    Par défaut
    merci beaucoup à vous deux. j'ai déjà réglé pas mal de problèmes grâce à vous!! notamment sur l'utilisation du set_param!!! encore merci

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

Discussions similaires

  1. Erreur windows lors du lancement de mon appli delphi
    Par socooooool dans le forum Delphi
    Réponses: 10
    Dernier message: 17/07/2006, 16h34
  2. Fenêtre modale Erreur au lancement de mon application
    Par James_ dans le forum C++Builder
    Réponses: 4
    Dernier message: 29/06/2006, 08h30
  3. Lancement de mon programme !
    Par Franck.H dans le forum SDL
    Réponses: 5
    Dernier message: 08/06/2006, 14h09
  4. Bloquer le lancement de mon application plusieurs fois
    Par marseillais57 dans le forum VB 6 et antérieur
    Réponses: 3
    Dernier message: 30/12/2005, 10h51
  5. Lancement de mon démon au démarrage
    Par Mickey34 dans le forum Administration système
    Réponses: 4
    Dernier message: 05/09/2003, 13h03

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