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 :

recuperer les valeures edit text


Sujet :

Interfaces Graphiques

  1. #1
    Membre à l'essai
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2014
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Lot (Midi Pyrénées)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2014
    Messages : 32
    Points : 23
    Points
    23
    Par défaut recuperer les valeures edit text
    bon soir à tous;
    s'il vous plait vous pouvez m'aider concernant le développement d'une interface graphique sous matlab.
    j'ai une interface contient un ensemble de edit text pour entrer un ensemble de paramètres puis cliquer sur Ok pour avoir un tracé en fonction de ces paramètres. le programme de ce tracé est déja existe sous forme '...' .m , dans ce programme j'ai utilisé des variable x,y,z la valeurs de ces variable je veux les récupérer depuis les edit texte selon les choix de l'utilisateur. la problème c'est que je sais pas comment récupérer ces variable depuis les edit text
    j'espere que jé reusi à exprime mon problème
    merci d'avance

  2. #2
    Invité
    Invité(e)
    Par défaut
    Bonjour,

    L'accès se fait à l'aide de la propriété 'String' :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    contenu = get(handles.ton_edit, 'String');
    qui donne la chaine de caractères saisie, et pour obtenir la valeur numérique, on applique str2double dessus (ou str2num s'il y a plusieurs valeurs).

  3. #3
    Membre à l'essai
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2014
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Lot (Midi Pyrénées)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2014
    Messages : 32
    Points : 23
    Points
    23
    Par défaut
    merci pour la réponse,
    mais j'ai essayé ça et dans le callback du mon push button et ça marche pas

    voila mon interface :
    et voila mon programme que je veux l'exécuter lorsque j’appuie sur OK
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    h11=h1*lamda;
    h22=h2*lamda;
    r1=d*lamda/2;
    ol=atan(h1/r1);
    a=0:pi/180:ol;
    x=abs(cos(a).*sin(2*pi*(h1+h2)*sin(a)/lamda));
    polar(a,x)
    hold on
     
    a=ol:pi/180:pi/2;
    y=abs(cos(a).*sin(2*pi*h1*sin(a)/lamda));
    polar(a,y)
    avec les variables que je veux récupérer depuis mon interface sont: h1, h2,d et lamda

    Nom : fihure.JPG
Affichages : 559
Taille : 33,3 Ko

  4. #4
    Invité
    Invité(e)
    Par défaut
    Citation Envoyé par alinee Voir le message
    mais j'ai essayé ça et dans le callback du mon push button et ça marche pas
    Qu'as-tu essayé précisément ? « Ça marche pas » = une erreur ? Si oui laquelle ?

  5. #5
    Membre à l'essai
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2014
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Lot (Midi Pyrénées)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2014
    Messages : 32
    Points : 23
    Points
    23
    Par défaut
    j'ai essayé cette solution la mais ça marche pas : http://www.developpez.net/forums/d10...ration-string/
    s'il vous plait j'ai besoin de vos aides

    oui une erreur quand je tapes les paramètre et je clique voilà le résultat
    ??? Undefined function or variable 'h10'.
    
    Error in ==> essa at 3
    h11=h10*lamda;
     
    ??? Error while evaluating uicontrol Callback
    voila mon code de l'interface
    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
    function varargout = ensite(varargin)
    % ENSITE M-file for ensite.fig
    %      ENSITE, by itself, creates a new ENSITE or raises the existing
    %      singleton*.
    %
    %      H = ENSITE returns the handle to a new ENSITE or the handle to
    %      the existing singleton*.
    %
    %      ENSITE('CALLBACK',hObject,eventData,handles,...) calls the local
    %      function named CALLBACK in ENSITE.M with the given input arguments.
    %
    %      ENSITE('Property','Value',...) creates a new ENSITE or raises the
    %      existing singleton*.  Starting from the left, property value pairs are
    %      applied to the GUI before ensite_OpeningFcn gets called.  An
    %      unrecognized property name or invalid value makes property application
    %      stop.  All inputs are passed to ensite_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 ensite
     
    % Last Modified by GUIDE v2.5 13-Jul-2014 15:17:52
     
    % Begin initialization code - DO NOT EDIT
    gui_Singleton = 1;
    gui_State = struct('gui_Name',       mfilename, ...
                       'gui_Singleton',  gui_Singleton, ...
                       'gui_OpeningFcn', @ensite_OpeningFcn, ...
                       'gui_OutputFcn',  @ensite_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 ensite is made visible.
    function ensite_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 ensite (see VARARGIN)
     
    % Choose default command line output for ensite
    handles.output = hObject;
     
    % Update handles structure
    guidata(hObject, handles);
     
    % UIWAIT makes ensite wait for user response (see UIRESUME)
    % uiwait(handles.figure1);
     
     
    % --- Outputs from this function are returned to the command line.
    function varargout = ensite_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;
     
     
    % --- Executes on button press in precedant.
    function precedant_Callback(hObject, eventdata, handles)
    % hObject    handle to precedant (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
     
     
     
     
     
    function f_Callback(hObject, eventdata, handles)
    % hObject    handle to f (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 f as text
    %        str2double(get(hObject,'String')) returns contents of f as a double
    handles.f = str2double(get(handles.f,'String')); % str2double plus adapté
    guidata(gcbf,handles);
     
    % --- Executes during object creation, after setting all properties.
    function f_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to f (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 L_Callback(hObject, eventdata, handles)
    % hObject    handle to L (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 L as text
    %        str2double(get(hObject,'String')) returns contents of L as a double
    input = str2num(get(hObject,'String'));
    handles.lamda= str2double(get(handles.L,'String')); % str2double plus adapté
    guidata(gcbf,handles.essa); 
     
    % --- Executes during object creation, after setting all properties.
    function L_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to L (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 h1_Callback(hObject, eventdata, handles)
    % hObject    handle to h1 (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 h1 as text
    %        str2double(get(hObject,'String')) returns contents of h1 as a double
    input = str2num(get(hObject,'String'));
    handles.h10 = str2double(get(handles.h1,'String')); % str2double plus adapté
    guidata(gcbf,handles.essa); 
     
     
     
    % --- Executes during object creation, after setting all properties.
    function h1_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to h1 (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 h2_Callback(hObject, eventdata, handles)
    % hObject    handle to h2 (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 h2 as text
    %        str2double(get(hObject,'String')) returns contents of h2 as a double
    input = str2num(get(hObject,'String'));
    handles.h20 = str2double(get(handles.h2,'String')); % str2double plus adapté
    guidata(gcbf,handles.essa); 
     
    % --- Executes during object creation, after setting all properties.
    function h2_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to h2 (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 d_Callback(hObject, eventdata, handles)
    % hObject    handle to d (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 d as text
    %        str2double(get(hObject,'String')) returns contents of d as a double
     
    input = str2num(get(hObject,'String'));
    handles.d0 = str2double(get(handles.d,'String')); % str2double plus adapté
    guidata(gcbf,handles.essa); 
     
    % --- Executes during object creation, after setting all properties.
    function d_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to d (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 selection change in type.
    function type_Callback(hObject, eventdata, handles)
    % hObject    handle to type (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Hints: contents = cellstr(get(hObject,'String')) returns type contents as cell array
    %        contents{get(hObject,'Value')} returns selected item from type
     
     
    % --- Executes during object creation, after setting all properties.
    function type_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to type (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
     
    % Hint: popupmenu 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 ok.
    function ok_Callback(hObject, eventdata, handles)
    % hObject    handle to ok (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    où essa c'est le nom de mon programme de calcul

  6. #6
    Membre à l'essai
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2014
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Lot (Midi Pyrénées)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2014
    Messages : 32
    Points : 23
    Points
    23
    Par défaut solution
    Merci pour ton aide;
    il est résolu; la solution c'est comme suite:
    le programme de calcul je le rends comme une fonction de variable d’entrée(variables1,2,...)
    après dans le code de mon interface j'ai écris dans le callback de mon bouton OK
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    variable1=str2double(get(handles.mon-edit,'String'));
    après j'ai appelé mon fonction de calcul par mon-fonction(variable1,2...)

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

Discussions similaires

  1. Réponses: 3
    Dernier message: 24/04/2014, 17h46
  2. recuperer les valeurs d'un JTextField en tant réel...
    Par boudou dans le forum Composants
    Réponses: 1
    Dernier message: 05/04/2006, 11h55
  3. recuperer les valeurs des checkbox selectionnés
    Par kagura dans le forum Général JavaScript
    Réponses: 7
    Dernier message: 01/03/2006, 10h21
  4. Récupérer les valeurs d'une GtkComboBox
    Par portos.lio dans le forum GTK+ avec C & C++
    Réponses: 1
    Dernier message: 01/12/2005, 13h32
  5. Recuperer les valeurs d'une requette [C#]
    Par AlphonseBrown dans le forum C#
    Réponses: 7
    Dernier message: 22/11/2005, 16h36

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