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

Interfaces Graphiques Discussion :

Valeur slider


Sujet :

Interfaces Graphiques

  1. #1
    Membre à l'essai
    Étudiant
    Inscrit en
    Décembre 2006
    Messages
    21
    Détails du profil
    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Décembre 2006
    Messages : 21
    Points : 16
    Points
    16
    Par défaut Valeur slider
    Bonjour j'ai developé une GUI en utilisant guide, et j'ai un petit problème maintenant. J'aimerais pouvoir choisir entre deux unités dans mon programme, SI et impérial.
    Pour cela je devrais changer la valeur max des deux sliders de ma GUI.

    Est-ce que quelqu'un sait si c'est possible de le faire?

    Merci d'avance
    Ben

  2. #2
    Membre éprouvé
    Avatar de rostomus
    Homme Profil pro
    Doctorant électronique et traitement du signal
    Inscrit en
    Décembre 2006
    Messages
    791
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 41
    Localisation : France

    Informations professionnelles :
    Activité : Doctorant électronique et traitement du signal

    Informations forums :
    Inscription : Décembre 2006
    Messages : 791
    Points : 1 205
    Points
    1 205
    Par défaut
    Bonjour,

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    set(handles.tag_de_slider,'Max',nouveau_max);
    MATLAB 7.4 (R2007a) WIN XP SP2
    -------------------------------------

  3. #3
    Membre à l'essai
    Étudiant
    Inscrit en
    Décembre 2006
    Messages
    21
    Détails du profil
    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Décembre 2006
    Messages : 21
    Points : 16
    Points
    16
    Par défaut
    Merci ca marche pour changer la valeur max,
    mais maintenant il y a un nouveaux problème, quand je change d'unité, par exemple de SI en impérial, tout marche la valeur change, mais quand je retourne en SI mes 2 sliders disparaissent de la GUI.

  4. #4
    Membre à l'essai
    Étudiant
    Inscrit en
    Décembre 2006
    Messages
    21
    Détails du profil
    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Décembre 2006
    Messages : 21
    Points : 16
    Points
    16
    Par défaut
    C'est bon j'ai trouvé l'erreur, en fait ca venait du fait que les valeur imperial après changement d'unité était trop grande pour etre affichées en SI, donc le slider n'apparaissait pas.

  5. #5
    Membre à l'essai
    Étudiant
    Inscrit en
    Décembre 2006
    Messages
    21
    Détails du profil
    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Décembre 2006
    Messages : 21
    Points : 16
    Points
    16
    Par défaut
    J'ai un autre petit problème, mes calculs s'executent quand je change la valeur sur les sliders.
    Quand je fais mes calculs en unités SI, il n'y a pas de pb, par contre quand je change vers le systeme imperial, comment puis-je faire pour que des calculs différents que ceux de SI s'executent en bougeant le slider??
    Mon code est le suivant

    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
    function varargout = cadcUNITS(varargin)
    % CADCUNITS M-file for cadcUNITS.fig
    %      CADCUNITS, by itself, creates a new CADCUNITS or raises the existing
    %      singleton*.
    %
    %      H = CADCUNITS returns the handle to a new CADCUNITS or the handle to
    %      the existing singleton*.
    %
    %      CADCUNITS('CALLBACK',hObject,eventData,handles,...) calls the local
    %      function named CALLBACK in CADCUNITS.M with the given input arguments.
    %
    %      CADCUNITS('Property','Value',...) creates a new CADCUNITS or raises the
    %      existing singleton*.  Starting from the left, property value pairs are
    %      applied to the GUI before cadcUNITS_OpeningFunction gets called.  An
    %      unrecognized property name or invalid value makes property application
    %      stop.  All inputs are passed to cadcUNITS_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 cadcUNITS
     
    % Last Modified by GUIDE v2.5 10-Apr-2007 15:03:59
     
    % Begin initialization code - DO NOT EDIT
    gui_Singleton = 1;
    gui_State = struct('gui_Name',       mfilename, ...
                       'gui_Singleton',  gui_Singleton, ...
                       'gui_OpeningFcn', @cadcUNITS_OpeningFcn, ...
                       'gui_OutputFcn',  @cadcUNITS_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 cadcUNITS is made visible.
    function cadcUNITS_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 cadcUNITS (see VARARGIN)
     
    % Choose default command line output for cadcUNITS
    handles.output = hObject;
     
    % Update handles structure
    guidata(hObject, handles);
     
    % UIWAIT makes cadcUNITS wait for user response (see UIRESUME)
    % uiwait(handles.figure1);
     
     
    % --- Outputs from this function are returned to the command line.
    function varargout = cadcUNITS_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;
     
    %-----------------------------------------------------------
    % Callback for Altitude Value
    %-----------------------------------------------------------
    % --- Executes on slider movement.
    function AltSlider_Callback(hObject, eventdata, handles)
    % hObject    handle to AltSlider (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,'Value') returns position of slider
    %        get(hObject,'Min') and get(hObject,'Max') to determine range of slider
     
    NewVal = get(hObject,'Value');
    set(handles.AltValue,'String',NewVal);
     
    To = 288.15; % Temp at seal level in Kelvin
    L = 0.0065; % Temperature Lapse rate K/m
    Pso = 1013.25; %Pressure at sealevel in mbar
    g = 9.80665; % Gravity m/s²
    R = 287; % constant
    a = g/(L*R);
    Pst = 226.258; % Pressure at 11 km end of troposphere
    Tst = 216.7; % Temperature at 11 km
    Ht = 11000; % Height of the end of troposphere
    rho0 = 1.225; % Sea level density in kg/m^3
    rhos = 0.363817; %11km density
    gam = 1.4;
     
    % Get the altitude value from the slider
    altitude = get(handles.AltSlider,'Value');
     
    % Get the aircraft speed value
    speed = get(handles.SpeedSlider,'Value');
     
    % Calculation of the temperature
    temp(altitude<=11000) = To - (L*altitude);
    temp(altitude>11000) = Tst;
    set(handles.temp, 'String', temp);
     
    % Calculation of the static pressure
    pressure(altitude<=11000) = Pso*(1-(L/To)*altitude).^(a);
    pressure(altitude>11000) = Pst*exp(-((g/(R*Tst))*(altitude-Ht)));
    set(handles.pressure, 'String', pressure);
     
    % Calculation of the density with respect to the altitude
    rho(altitude<=11000) = rho0*(1-((L/To)*altitude)).^((g/(L*R))-1);
    rho(altitude>11000) = rhos*exp((g*(Ht-altitude))/(R*Tst));
    set(handles.rho, 'String', rho);
     
    % Calculation of the speed of sound
    sound(altitude<=11000) = sqrt(gam*R*(To - (L*altitude)));
    sound(altitude>11000) = sqrt(gam*R*Tst);
    set(handles.sound, 'String', sound);
     
    % Calculation of MAch number
    mach(altitude<=11000) = speed/(sqrt(gam*R*(To - (L*altitude))));
    mach(altitude>11000) = speed/sqrt(gam*R*Tst);
    set(handles.mach, 'String', mach);
     
    %------------------------------------------------------------
    % Callback for speed slider
    %------------------------------------------------------------
    % --- Executes on slider movement.
    function SpeedSlider_Callback(hObject, eventdata, handles)
    % hObject    handle to SpeedSlider (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,'Value') returns position of slider
    %        get(hObject,'Min') and get(hObject,'Max') to determine range of slider
     
    NewVal = get(hObject,'Value');
    set(handles.SpeedVAlue,'String',NewVal);
     
    To = 288.15; % Temp at seal level in Kelvin
    L = 0.0065; % Temperature Lapse rate K/m
    Pso = 1013.25; %Pressure at sealevel in mbar
    g = 9.80665; % Gravity m/s²
    R = 287; % constant
    a = g/(L*R);
    Pst = 226.258; % Pressure at 11 km end of troposphere
    Tst = 216.7; % Temperature at 11 km
    Ht = 11000; % Height of the end of troposphere
    rho0 = 1.225; % Sea level density in kg/m^3
    rhos = 0.363817; %11km density
    gam = 1.4;
     
    % Get the altitude value from the slider
    altitude = get(handles.AltSlider,'Value');
     
    % Get the aircraft speed value
    speed = get(handles.SpeedSlider,'Value');
     
    % Calculation of the temperature
    temp(altitude<=11000) = To - (L*altitude);
    temp(altitude>11000) = Tst;
    set(handles.temp, 'String', temp);
     
    % Calculation of the static pressure
    pressure(altitude<=11000) = Pso*(1-(L/To)*altitude).^(a);
    pressure(altitude>11000) = Pst*exp(-((g/(R*Tst))*(altitude-Ht)));
    set(handles.pressure, 'String', pressure);
     
    % Calculation of the density with respect to the altitude
    rho(altitude<=11000) = rho0*(1-((L/To)*altitude)).^((g/(L*R))-1);
    rho(altitude>11000) = rhos*exp((g*(Ht-altitude))/(R*Tst));
    set(handles.rho, 'String', rho);
     
    % Calculation of the speed of sound
    sound(altitude<=11000) = sqrt(gam*R*(To - (L*altitude)));
    sound(altitude>11000) = sqrt(gam*R*Tst);
    set(handles.sound, 'String', sound);
     
    % Calculation of MAch number
    mach(altitude<=11000) = speed/(sqrt(gam*R*(To - (L*altitude))));
    mach(altitude>11000) = speed/sqrt(gam*R*Tst);
    set(handles.mach, 'String', mach);
     
     
    function AltValue_Callback(hObject, eventdata, handles)
    % hObject    handle to AltValue (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 AltValue as text
    %        str2double(get(hObject,'String')) returns contents of AltValue as a double
     
     
    function SpeedVAlue_Callback(hObject, eventdata, handles)
    % hObject    handle to SpeedVAlue (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 SpeedVAlue as text
    %        str2double(get(hObject,'String')) returns contents of SpeedVAlue as a double
     
     
    % --- Executes on button press in si.
    function si_Callback(hObject, eventdata, handles)
    % hObject    handle to si (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Hint: get(hObject,'Value') returns toggle state of si
     
    set(handles.text1, 'String', 'Temp (K)');
    set(handles.AltSlider, 'Max', 20000,...
                           'Value', 0);
    set(handles.SpeedSlider, 'Max', 340,...
                             'Value', 0);
    set(handles.AltValue, 'String', '0');
    set(handles.SpeedVAlue, 'String', '0');
     
     
     
    % --- Executes on button press in uk.
    function uk_Callback(hObject, eventdata, handles)
    % hObject    handle to uk (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Hint: get(hObject,'Value') returns toggle state of uk
    set(handles.text1, 'String', 'Temp (F)');
    set(handles.AltSlider, 'Max', 60000,...
                           'Value', 0);
    set(handles.SpeedSlider, 'Max', 940,...
                             'Value', 0);
    set(handles.SpeedVAlue, 'String', '0');
    set(handles.AltValue, 'String', '0');
     
     
    To = 288.15; % Temp at seal level in Kelvin
    L = 0.0065; % Temperature Lapse rate K/m
    Pso = 1013.25; %Pressure at sealevel in mbar
    g = 9.80665; % Gravity m/s²
    R = 287; % constant
    a = g/(L*R);
    Pst = 226.258; % Pressure at 11 km end of troposphere
    Tst = 216.7; % Temperature at 11 km
    Ht = 11000; % Height of the end of troposphere
    rho0 = 1.225; % Sea level density in kg/m^3
    rhos = 0.363817; %11km density
    gam = 1.4;
     
    % Get the altitude value from the slider
    altitude = get(handles.AltSlider,'Value');
     
    % Get the aircraft speed value
    speed = get(handles.SpeedSlider,'Value');
     
    % Calculation of the temperature
    temp(altitude<=11000) = (To - (L*altitude))*2;
    temp(altitude>11000) = Tst*2;
    set(handles.temp, 'String', temp);
    Merci d'avance.

  6. #6
    Membre éprouvé
    Avatar de rostomus
    Homme Profil pro
    Doctorant électronique et traitement du signal
    Inscrit en
    Décembre 2006
    Messages
    791
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 41
    Localisation : France

    Informations professionnelles :
    Activité : Doctorant électronique et traitement du signal

    Informations forums :
    Inscription : Décembre 2006
    Messages : 791
    Points : 1 205
    Points
    1 205
    Par défaut
    Comment tu fais pour choisir le system "imperial" ou "SI"??

    des bouton "radio", menu,....??
    MATLAB 7.4 (R2007a) WIN XP SP2
    -------------------------------------

  7. #7
    Membre à l'essai
    Étudiant
    Inscrit en
    Décembre 2006
    Messages
    21
    Détails du profil
    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Décembre 2006
    Messages : 21
    Points : 16
    Points
    16
    Par défaut
    hello

    Pardon je n'ai pas précisé, mais le choix se fait par deux boutons radio.

  8. #8
    Membre éprouvé
    Avatar de rostomus
    Homme Profil pro
    Doctorant électronique et traitement du signal
    Inscrit en
    Décembre 2006
    Messages
    791
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 41
    Localisation : France

    Informations professionnelles :
    Activité : Doctorant électronique et traitement du signal

    Informations forums :
    Inscription : Décembre 2006
    Messages : 791
    Points : 1 205
    Points
    1 205
    Par défaut
    Bonjour,

    Avant de faire les calcule fait un test qui determine quel bouton est selectionné,
    je te propose:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
     
    radio=get(handles.uipanel1,'selectedObject');
    str=get(radio,'string')
    if strcmp(str,'SI')
     
       % fais les calculs pour SI
     
    else
        % fais les calcul pour imperial
     
    end
    MATLAB 7.4 (R2007a) WIN XP SP2
    -------------------------------------

  9. #9
    Membre à l'essai
    Étudiant
    Inscrit en
    Décembre 2006
    Messages
    21
    Détails du profil
    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Décembre 2006
    Messages : 21
    Points : 16
    Points
    16
    Par défaut
    Ok j'ai essayé, ca me change les valeurs, mais par contre comment faire pour que les valeurs s'actualisent en temps réel quand je change la valeur de mon slider.

    Pour ce faire j'avais mis mes calculs dans le callback des sliders, mais ca ne marche plus si j'applique ta méthode.

    Ou alors ca n'actualise les résultats que pour les calculs qui sont après les callback des sliders.

    Je ne sais pas si tout cela est très clair désolé ??

    En gros je souhaiterais afficher mes resultats en temps réel quand je "cliques" sur mes sliders et ceux soit avec mes calculs en unités SI ou soit avec les autres calculs, et c'est la ou je bloque.

  10. #10
    Membre éprouvé
    Avatar de rostomus
    Homme Profil pro
    Doctorant électronique et traitement du signal
    Inscrit en
    Décembre 2006
    Messages
    791
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 41
    Localisation : France

    Informations professionnelles :
    Activité : Doctorant électronique et traitement du signal

    Informations forums :
    Inscription : Décembre 2006
    Messages : 791
    Points : 1 205
    Points
    1 205
    Par défaut
    Voila un exemple (en piece jointe)
    Fichiers attachés Fichiers attachés
    MATLAB 7.4 (R2007a) WIN XP SP2
    -------------------------------------

  11. #11
    Membre à l'essai
    Étudiant
    Inscrit en
    Décembre 2006
    Messages
    21
    Détails du profil
    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Décembre 2006
    Messages : 21
    Points : 16
    Points
    16
    Par défaut
    Merci beaucoup rostomus, ca m'aide énormément .

    je me sens un peu bête car je ne sais pour quelle raison j'avais essayé de mettre les callback de mes sliders à l'intérieur de ton code, mais pas l'inverse.

    Encore merci pour tout

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

Discussions similaires

  1. [Débutant] affichage valeur slider et fonction callback
    Par Guillaumelepremier dans le forum Interfaces Graphiques
    Réponses: 2
    Dernier message: 06/03/2015, 14h08
  2. Problème d'update de valeur GUI et sliders
    Par benji2642 dans le forum Interfaces Graphiques
    Réponses: 2
    Dernier message: 01/03/2007, 19h24
  3. valeur du slider dans une scrollbar
    Par jc_cornic dans le forum Général JavaScript
    Réponses: 5
    Dernier message: 05/10/2006, 12h34
  4. Réponses: 1
    Dernier message: 21/06/2006, 12h31
  5. affichage valeur d'un Slider
    Par djiwalloo dans le forum MFC
    Réponses: 4
    Dernier message: 24/11/2004, 10h28

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