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 :

connexion de mon popupmenu et de mon pushbutton


Sujet :

Interfaces Graphiques

  1. #1
    Futur Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Mai 2017
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mai 2017
    Messages : 13
    Points : 7
    Points
    7
    Par défaut connexion de mon popupmenu et de mon pushbutton
    Bonjour à tous. j'ai réalisé une interface dans le guide de Matlab, j'ai l'affichage voulu. Mon problème se trouve au niveau de la connexion entre mon popupmenu où j'ai une liste déroulante, et mon pushbutton où je valide pour affichage des valeurs. Merci d'avance pour votre aide. 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
    function varargout = cart_geo3(varargin)
    function pushbutton1_Callback(hObject, eventdata, handles)
    global p
    X = get(handles.edit1,'string');
    X=str2double(X);
    Y = get(handles.edit2,'string');
    Y=str2double(Y);
    Z = get(handles.edit3,'string');
    Z=str2double(Z);
    val = get(handles.Choix_du_mode,'Value');
    switch val
        case 'WGS84'
        a = 6378137;
        b = 6356752.314245;
        case 'GRS80'
        a = 6378137;
        b = 6356752.314140;
        case 'CLARKE1880'
        a = 6378249.145;
        b = 6356514.870;
    end
    guidata(hObject, handles);
    e = sqrt((a^2)-(b^2))/a;
    f = 1 - (sqrt(1 - e^2));
    R = sqrt((X^2)+ (Y^2) + (Z^2));
    c = sqrt(X^2 + Y^2);
    mu = atan((Z/c)*((1-f)+ (e^2)*a/R)); 
    lambda = atan(Y/X);
    Phi = atan((Z*(1-f)+(e^2)*a*(sin(mu))^3)/((1-f)*(sqrt(c)-(e^2)*a*(cos(mu))^3)));
    h = sqrt(c)*cos(Phi) + Z*sin(Phi) - a*sqrt(1-(e^2)*(sin(Phi))^3);
    p.MyData =[p.MyData ;[{lambda} {Phi} {h}]];
    set(handles.uitable1,'Data',p.MyData)
    end
     
    function pushbutton2_Callback(hObject, eventdata, handles)
    set(handles.edit1, 'String', '');
    set(handles.edit2, 'String', '');
    set(handles.edit3, 'String', '');
    end
     
    function popupmenu1_Callback(hObject, eventdata, handles)
    val = get(hObject,'Value');
    switch val
        case 'WGS84'
        a = 6378137;
        b = 6356752.314245;
        case 'GRS80'
        a = 6378137;
        b = 6356752.314140;
        case 'CLARKE1880'
        a = 6378249.145;
        b = 6356514.870;
    end
    end
     
    function Choix_du_mode_Callback(hObject, eventdata, handles)
    handles.WGS84=WGS84;
    handles.GRS80=GRS80;
    handles.CLARKE1880=CLARKE1880;
    val=get(hObject, 'Value');
    str = get(hObject, 'string');
    if Valider_choix==1
    switch str(val)
        case 'WGS84'
        handles.current_data='WGS84'
        case 'GRS80'
        handles.current_data='GRS80'
        case 'CLARKE1880'
        handles.current_data='CLARKE1880'
    end
    end
    handles.output = hObject;
    guidata(hObject, handles);
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
    end


    l'erreur renvoyée est la suivante:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    Error in
    matlab.graphics.internal.figfile.FigFile/read>@(hObject,eventdata)cart_geo3('popupmenu1_CreateFcn',hObject,eventdata,guidata(hObject)) 
    Warning: MATLAB has disabled some advanced graphics rendering features by switching to
    software OpenGL. For more information, click here.

  2. #2
    Rédacteur/Modérateur

    Avatar de Jerome Briot
    Homme Profil pro
    Freelance mécatronique - Conseil, conception et formation
    Inscrit en
    Novembre 2006
    Messages
    20 302
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Freelance mécatronique - Conseil, conception et formation

    Informations forums :
    Inscription : Novembre 2006
    Messages : 20 302
    Points : 53 163
    Points
    53 163
    Par défaut
    Citation Envoyé par agnesflore Voir le message
    l'erreur renvoyée est la suivante:
    Il n'y a pas une erreur, mais une erreur (error) et un avertissement (warning)

    Pour corrigé le deuxième, ajoute ceci au début de ton code :

    Relance ton code et donne nous le message d'erreur complet
    Voir la FAQ : Comment exploiter les messages d'erreurs ?
    Ingénieur indépendant en mécatronique - Conseil, conception et formation
    • Conception mécanique (Autodesk Fusion 360)
    • Impression 3D (Ultimaker)
    • Développement informatique (Python, MATLAB, C)
    • Programmation de microcontrôleur (Microchip PIC, ESP32, Raspberry Pi, Arduino…)

    « J'étais le meilleur ami que le vieux Jim avait au monde. Il fallait choisir. J'ai réfléchi un moment, puis je me suis dit : "Tant pis ! J'irai en enfer" » (Saint Huck)

  3. #3
    Futur Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Mai 2017
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mai 2017
    Messages : 13
    Points : 7
    Points
    7
    Par défaut Merci Jerome
    Après rédaction de la ligne que vous m'avez envoyée, l'error actuel est
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    Error: File: cart_geo3.m Line: 2 Column: 22
    Function with duplicate name "cart_geo3" cannot be define
    d.

  4. #4
    Rédacteur/Modérateur

    Avatar de Jerome Briot
    Homme Profil pro
    Freelance mécatronique - Conseil, conception et formation
    Inscrit en
    Novembre 2006
    Messages
    20 302
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Freelance mécatronique - Conseil, conception et formation

    Informations forums :
    Inscription : Novembre 2006
    Messages : 20 302
    Points : 53 163
    Points
    53 163
    Par défaut
    Le code que tu as écris n'est pas bon. Tu as sans doute modifié trop de choses dans le code généré automatiquement par le GUIDE
    Ingénieur indépendant en mécatronique - Conseil, conception et formation
    • Conception mécanique (Autodesk Fusion 360)
    • Impression 3D (Ultimaker)
    • Développement informatique (Python, MATLAB, C)
    • Programmation de microcontrôleur (Microchip PIC, ESP32, Raspberry Pi, Arduino…)

    « J'étais le meilleur ami que le vieux Jim avait au monde. Il fallait choisir. J'ai réfléchi un moment, puis je me suis dit : "Tant pis ! J'irai en enfer" » (Saint Huck)

  5. #5
    Futur Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Mai 2017
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mai 2017
    Messages : 13
    Points : 7
    Points
    7
    Par défaut Pas du tout Jerome
    J'ai juste ajouter mes lignes. Le code intégral 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
    269
    270
    271
    272
    273
    opengl hardware
    function varargout = cart_geo3(varargin)
    % CART_GEO3 MATLAB code for cart_geo3.fi
    %      CART_GEO3, by itself, creates a new CART_GEO3 or raises the existing
    %      singleton*.
    %
    %      H = CART_GEO3 returns the handle to a new CART_GEO3 or the handle to
    %      the existing singleton*.
    %
    %      CART_GEO3('CALLBACK',hObject,eventData,handles,...) calls the local
    %      function named CALLBACK in CART_GEO3.M with the given input arguments.
    %
    %      CART_GEO3('Property','Value',...) creates a new CART_GEO3 or raises the
    %      existing singleton*.  Starting from the left, property value pairs are
    %      applied to the GUI before cart_geo3_OpeningFcn gets called.  An
    %      unrecognized property name or invalid value makes property application
    %      stop.  All inputs are passed to cart_geo3_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 cart_geo3
     
    % Last Modified by GUIDE v2.5 08-Feb-2019 15:11:02
     
    % Begin initialization code - DO NOT EDIT
    gui_Singleton = 1;
    gui_State = struct('gui_Name',       mfilename, ...
                       'gui_Singleton',  gui_Singleton, ...
                       'gui_OpeningFcn', @cart_geo3_OpeningFcn, ...
                       'gui_OutputFcn',  @cart_geo3_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
    end
     
    % --- Executes just before cart_geo3 is made visible.
    function cart_geo3_OpeningFcn(hObject, eventdata, handles, varargin)
    global p
    p.MyData =[];
    % 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 cart_geo3 (see VARARGIN)
     
    %set(handles.popupmenu1, 'UserData', b);
    % Choose default command line output for cart_geo3
     
    ah = axes('unit', 'normalized', 'position', [0 0 1 1]); 
    % import the background image and show it on the axes
    bg = imread('terre1.jpg'); imagesc(bg);
    % prevent plotting over the background and turn the axis off
    set(ah,'handlevisibility','off','visible','off')
    % making sure the background is behind all the other uicontrols
    uistack(ah, 'bottom');
     
    % Update handles structure
    guidata(hObject, handles);
     
    % UIWAIT makes cart_geo3 wait for user response (see UIRESUME)
    % uiwait(handles.figure1);
     
     
    % --- Outputs from this function are returned to the command line.
    end
    function varargout = cart_geo3_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;
     
    end
     
    function edit1_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
     
     
    % --- Executes during object creation, after setting all properties.
    end
    function edit1_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
     
     
    end
    function edit2_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
     
     
    % --- Executes during object creation, after setting all properties.
    end
    function edit2_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
     
    end
     
    function edit3_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
     
     
    % --- Executes during object creation, after setting all properties.
    end
    function edit3_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
     
     
    % --- Executes on button press in pushbutton1.
    end
    function pushbutton1_Callback(hObject, eventdata, handles)
    % hObject    handle to pushbutton1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    global p
    X = get(handles.edit1,'string');
    X=str2double(X);
    Y = get(handles.edit2,'string');
    Y=str2double(Y);
    Z = get(handles.edit3,'string');
    Z=str2double(Z);
    val = get(handles.Choix_du_mode,'Value');
    switch val
     
        case 'WGS84'
        a = 6378137;
        b = 6356752.314245;
        case 'GRS80'
        a = 6378137;
        b = 6356752.314140;
        case 'CLARKE1880'
        a = 6378249.145;
        b = 6356514.870;
    end
    guidata(hObject, handles);
    e = sqrt((a^2)-(b^2))/a;
    f = 1 - (sqrt(1 - e^2));
    R = sqrt((X^2)+ (Y^2) + (Z^2));
    c = sqrt(X^2 + Y^2);
    mu = atan((Z/c)*((1-f)+ (e^2)*a/R)); 
    lambda = atan(Y/X);
    Phi = atan((Z*(1-f)+(e^2)*a*(sin(mu))^3)/((1-f)*(sqrt(c)-(e^2)*a*(cos(mu))^3)));
    h = sqrt(c)*cos(Phi) + Z*sin(Phi) - a*sqrt(1-(e^2)*(sin(Phi))^3);
    p.MyData =[p.MyData ;[{lambda} {Phi} {h}]];
    set(handles.uitable1,'Data',p.MyData)
    % --- Executes on button press in pushbutton2.
    end
    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)
    set(handles.edit1, 'String', '');
    set(handles.edit2, 'String', '');
    set(handles.edit3, 'String', '');
     
    % --- Executes on button press in pushbutton3.
    end
    function pushbutton3_Callback(hObject, eventdata, handles)
    % hObject    handle to pushbutton3 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    accueil
     
     
    % --- Executes on selection change in popupmenu1.
    end
    function popupmenu1_Callback(hObject, eventdata, handles)
    % hObject    handle to popupmenu1 (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 popupmenu1 contents as cell array
    %        contents{get(hObject,'Value')} returns selected item from popupmenu1
    %contents = cellstr(get(hObject,'String'));
    %parametres del'ellipsoide en question
    %pop_choice = contents{get(hObject,'Value')}
    %pop_choice = contents{get(hObject,'Value')}
    val = get(hObject,'Value');
    switch val
     
        case 'WGS84'
        a = 6378137;
        b = 6356752.314245;
        case 'GRS80'
        a = 6378137;
        b = 6356752.314140;
        case 'CLARKE1880'
        a = 6378249.145;
        b = 6356514.870;
    end
     
    % --- Executes during object creation, after setting all properties.
    end
    function Choix_du_mode_Callback(hObject, eventdata, handles)
    % hObject    handle to popupmenu1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
    handles.WGS84=WGS84;
    handles.GRS80=GRS80;
    handles.CLARKE1880=CLARKE1880;
    val=get(hObject, 'Value');
    str = get(hObject, 'string');
    if Valider_choix==1
    switch str(val)
        case 'WGS84'
        handles.current_data='WGS84'
        case 'GRS80'
        handles.current_data='GRS80'
        case 'CLARKE1880'
        handles.current_data='CLARKE1880'
    end
    end
     
    handles.output = hObject;
    guidata(hObject, handles);
     
    % 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
    end

  6. #6
    Rédacteur/Modérateur

    Avatar de Jerome Briot
    Homme Profil pro
    Freelance mécatronique - Conseil, conception et formation
    Inscrit en
    Novembre 2006
    Messages
    20 302
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Freelance mécatronique - Conseil, conception et formation

    Informations forums :
    Inscription : Novembre 2006
    Messages : 20 302
    Points : 53 163
    Points
    53 163
    Par défaut
    Comme ceci :

    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
    function varargout = cart_geo3(varargin)
    % CART_GEO3 MATLAB code for cart_geo3.fi
    %      CART_GEO3, by itself, creates a new CART_GEO3 or raises the existing
    %      singleton*.
    %
    %      H = CART_GEO3 returns the handle to a new CART_GEO3 or the handle to
    %      the existing singleton*.
    %
    %      CART_GEO3('CALLBACK',hObject,eventData,handles,...) calls the local
    %      function named CALLBACK in CART_GEO3.M with the given input arguments.
    %
    %      CART_GEO3('Property','Value',...) creates a new CART_GEO3 or raises the
    %      existing singleton*.  Starting from the left, property value pairs are
    %      applied to the GUI before cart_geo3_OpeningFcn gets called.  An
    %      unrecognized property name or invalid value makes property application
    %      stop.  All inputs are passed to cart_geo3_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 cart_geo3
     
    % Last Modified by GUIDE v2.5 08-Feb-2019 15:11:02
     
    % Begin initialization code - DO NOT EDIT
    gui_Singleton = 1;
    gui_State = struct('gui_Name',       mfilename, ...
                       'gui_Singleton',  gui_Singleton, ...
                       'gui_OpeningFcn', @cart_geo3_OpeningFcn, ...
                       'gui_OutputFcn',  @cart_geo3_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
    end
     
    % --- Executes just before cart_geo3 is made visible.
    function cart_geo3_OpeningFcn(hObject, eventdata, handles, varargin)
    global p
    opengl hardware
    p.MyData =[];
    % 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 cart_geo3 (see VARARGIN)
     
    %set(handles.popupmenu1, 'UserData', b);
    % Choose default command line output for cart_geo3
     
    ah = axes('unit', 'normalized', 'position', [0 0 1 1]); 
    % import the background image and show it on the axes
    bg = imread('terre1.jpg'); imagesc(bg);
    % prevent plotting over the background and turn the axis off
    set(ah,'handlevisibility','off','visible','off')
    % making sure the background is behind all the other uicontrols
    uistack(ah, 'bottom');
     
    % Update handles structure
    guidata(hObject, handles);
     
    % UIWAIT makes cart_geo3 wait for user response (see UIRESUME)
    % uiwait(handles.figure1);
     
     
    % --- Outputs from this function are returned to the command line.
    end
    function varargout = cart_geo3_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;
     
    end
     
    function edit1_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
     
     
    % --- Executes during object creation, after setting all properties.
    end
    function edit1_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
     
     
    end
    function edit2_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
     
     
    % --- Executes during object creation, after setting all properties.
    end
    function edit2_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
     
    end
     
    function edit3_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
     
     
    % --- Executes during object creation, after setting all properties.
    end
    function edit3_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
     
     
    % --- Executes on button press in pushbutton1.
    end
    function pushbutton1_Callback(hObject, eventdata, handles)
    % hObject    handle to pushbutton1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    global p
    X = get(handles.edit1,'string');
    X=str2double(X);
    Y = get(handles.edit2,'string');
    Y=str2double(Y);
    Z = get(handles.edit3,'string');
    Z=str2double(Z);
    val = get(handles.Choix_du_mode,'Value');
    switch val
     
        case 'WGS84'
        a = 6378137;
        b = 6356752.314245;
        case 'GRS80'
        a = 6378137;
        b = 6356752.314140;
        case 'CLARKE1880'
        a = 6378249.145;
        b = 6356514.870;
    end
    guidata(hObject, handles);
    e = sqrt((a^2)-(b^2))/a;
    f = 1 - (sqrt(1 - e^2));
    R = sqrt((X^2)+ (Y^2) + (Z^2));
    c = sqrt(X^2 + Y^2);
    mu = atan((Z/c)*((1-f)+ (e^2)*a/R)); 
    lambda = atan(Y/X);
    Phi = atan((Z*(1-f)+(e^2)*a*(sin(mu))^3)/((1-f)*(sqrt(c)-(e^2)*a*(cos(mu))^3)));
    h = sqrt(c)*cos(Phi) + Z*sin(Phi) - a*sqrt(1-(e^2)*(sin(Phi))^3);
    p.MyData =[p.MyData ;[{lambda} {Phi} {h}]];
    set(handles.uitable1,'Data',p.MyData)
    % --- Executes on button press in pushbutton2.
    end
    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)
    set(handles.edit1, 'String', '');
    set(handles.edit2, 'String', '');
    set(handles.edit3, 'String', '');
     
    % --- Executes on button press in pushbutton3.
    end
    function pushbutton3_Callback(hObject, eventdata, handles)
    % hObject    handle to pushbutton3 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    accueil
     
     
    % --- Executes on selection change in popupmenu1.
    end
    function popupmenu1_Callback(hObject, eventdata, handles)
    % hObject    handle to popupmenu1 (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 popupmenu1 contents as cell array
    %        contents{get(hObject,'Value')} returns selected item from popupmenu1
    %contents = cellstr(get(hObject,'String'));
    %parametres del'ellipsoide en question
    %pop_choice = contents{get(hObject,'Value')}
    %pop_choice = contents{get(hObject,'Value')}
    val = get(hObject,'Value');
    switch val
     
        case 'WGS84'
        a = 6378137;
        b = 6356752.314245;
        case 'GRS80'
        a = 6378137;
        b = 6356752.314140;
        case 'CLARKE1880'
        a = 6378249.145;
        b = 6356514.870;
    end
     
    % --- Executes during object creation, after setting all properties.
    end
    function Choix_du_mode_Callback(hObject, eventdata, handles)
    % hObject    handle to popupmenu1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
    handles.WGS84=WGS84;
    handles.GRS80=GRS80;
    handles.CLARKE1880=CLARKE1880;
    val=get(hObject, 'Value');
    str = get(hObject, 'string');
    if Valider_choix==1
    switch str(val)
        case 'WGS84'
        handles.current_data='WGS84'
        case 'GRS80'
        handles.current_data='GRS80'
        case 'CLARKE1880'
        handles.current_data='CLARKE1880'
    end
    end
     
    handles.output = hObject;
    guidata(hObject, handles);
     
    % 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
    end
    Ingénieur indépendant en mécatronique - Conseil, conception et formation
    • Conception mécanique (Autodesk Fusion 360)
    • Impression 3D (Ultimaker)
    • Développement informatique (Python, MATLAB, C)
    • Programmation de microcontrôleur (Microchip PIC, ESP32, Raspberry Pi, Arduino…)

    « J'étais le meilleur ami que le vieux Jim avait au monde. Il fallait choisir. J'ai réfléchi un moment, puis je me suis dit : "Tant pis ! J'irai en enfer" » (Saint Huck)

  7. #7
    Futur Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Mai 2017
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mai 2017
    Messages : 13
    Points : 7
    Points
    7
    Par défaut Merci encore Jerome pour l'attention à mes messages.
    Mon code ne marche toujours pas. Mon pushbutton refuse toujours de se connecter à mon popupmenu. L'error maintenant est:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    Reference to non-existent field 'popupmenu1_CreateFcn'.
     
    Error in cart_geo3>pushbutton1_Callback (line 171)
        val = get(handles.popupmenu1_CreateFcn,'Value');
     
    Error in gui_mainfcn (line 95)
            feval(varargin{:});
     
    Error in cart_geo3 (line 42)
            gui_mainfcn(gui_State, varargin{:});
     
    Error in
    matlab.graphics.internal.figfile.FigFile/read>@(hObject,eventdata)cart_geo3('pushbutton1_Callback',hObject,eventdata,guidata(hObject)) 
    Error while evaluating UIControl Callback

  8. #8
    Rédacteur/Modérateur

    Avatar de Jerome Briot
    Homme Profil pro
    Freelance mécatronique - Conseil, conception et formation
    Inscrit en
    Novembre 2006
    Messages
    20 302
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Freelance mécatronique - Conseil, conception et formation

    Informations forums :
    Inscription : Novembre 2006
    Messages : 20 302
    Points : 53 163
    Points
    53 163
    Par défaut
    Comme ceci :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    val = get(handles.popupmenu1,'Value');
    Ingénieur indépendant en mécatronique - Conseil, conception et formation
    • Conception mécanique (Autodesk Fusion 360)
    • Impression 3D (Ultimaker)
    • Développement informatique (Python, MATLAB, C)
    • Programmation de microcontrôleur (Microchip PIC, ESP32, Raspberry Pi, Arduino…)

    « J'étais le meilleur ami que le vieux Jim avait au monde. Il fallait choisir. J'ai réfléchi un moment, puis je me suis dit : "Tant pis ! J'irai en enfer" » (Saint Huck)

  9. #9
    Futur Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Mai 2017
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mai 2017
    Messages : 13
    Points : 7
    Points
    7
    Par défaut Merci Jerome
    Le code ne marche toujours pas. Du coup je vais enlever le popupmenu et voir l'option 2, demander à l'utilisateur d'entrer a et b.
    ça aurait vraiment été intéressant et édifiant que ce code de connexion popupmenu et pushbutton, fonctionne.

  10. #10
    Rédacteur/Modérateur

    Avatar de Jerome Briot
    Homme Profil pro
    Freelance mécatronique - Conseil, conception et formation
    Inscrit en
    Novembre 2006
    Messages
    20 302
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Freelance mécatronique - Conseil, conception et formation

    Informations forums :
    Inscription : Novembre 2006
    Messages : 20 302
    Points : 53 163
    Points
    53 163
    Par défaut
    Envoi nous le fichier cart_geo3.m et le fichier cart_geo3.fig (mis dans une archive zip ou rar)
    Ingénieur indépendant en mécatronique - Conseil, conception et formation
    • Conception mécanique (Autodesk Fusion 360)
    • Impression 3D (Ultimaker)
    • Développement informatique (Python, MATLAB, C)
    • Programmation de microcontrôleur (Microchip PIC, ESP32, Raspberry Pi, Arduino…)

    « J'étais le meilleur ami que le vieux Jim avait au monde. Il fallait choisir. J'ai réfléchi un moment, puis je me suis dit : "Tant pis ! J'irai en enfer" » (Saint Huck)

  11. #11
    Futur Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Mai 2017
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mai 2017
    Messages : 13
    Points : 7
    Points
    7
    Par défaut le Voici.

  12. #12
    Rédacteur/Modérateur

    Avatar de Jerome Briot
    Homme Profil pro
    Freelance mécatronique - Conseil, conception et formation
    Inscrit en
    Novembre 2006
    Messages
    20 302
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Freelance mécatronique - Conseil, conception et formation

    Informations forums :
    Inscription : Novembre 2006
    Messages : 20 302
    Points : 53 163
    Points
    53 163
    Par défaut
    L'interface s'affiche correctement avec le code 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
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
     
    function varargout = cart_geo3(varargin)
    opengl hardware
        % CART_GEO3 MATLAB code for cart_geo3.fi
        %      CART_GEO3, by itself, creates a new CART_GEO3 or raises the existing
        %      singleton*.
        %
        %      H = CART_GEO3 returns the handle to a new CART_GEO3 or the handle to
        %      the existing singleton*.
        %
        %      CART_GEO3('CALLBACK',hObject,eventData,handles,...) calls the local
        %      function named CALLBACK in CART_GEO3.M with the given input arguments.
        %
        %      CART_GEO3('Property','Value',...) creates a new CART_GEO3 or raises the
        %      existing singleton*.  Starting from the left, property value pairs are
        %      applied to the GUI before cart_geo3_OpeningFcn gets called.  An
        %      unrecognized property name or invalid value makes property application
        %      stop.  All inputs are passed to cart_geo3_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 cart_geo3
     
        % Last Modified by GUIDE v2.5 08-Feb-2019 15:11:02
     
        % Begin initialization code - DO NOT EDIT
        gui_Singleton = 1;
        gui_State = struct('gui_Name',       mfilename, ...
                           'gui_Singleton',  gui_Singleton, ...
                           'gui_OpeningFcn', @cart_geo3_OpeningFcn, ...
                           'gui_OutputFcn',  @cart_geo3_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
        end
     
        % --- Executes just before cart_geo3 is made visible.
        function cart_geo3_OpeningFcn(hObject, eventdata, handles, varargin)
        global p
        p.MyData =[];
        % 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 cart_geo3 (see VARARGIN)
     
        %set(handles.popupmenu1, 'UserData', b);
        % Choose default command line output for cart_geo3
     
        ah = axes('unit', 'normalized', 'position', [0 0 1 1]); 
        % import the background image and show it on the axes
        bg = imread('terre1.jpg'); imagesc(bg);
        % prevent plotting over the background and turn the axis off
        set(ah,'handlevisibility','off','visible','off')
        % making sure the background is behind all the other uicontrols
        uistack(ah, 'bottom');
     
        % Update handles structure
        guidata(hObject, handles);
     
        % UIWAIT makes cart_geo3 wait for user response (see UIRESUME)
        % uiwait(handles.figure1);
     
     
        % --- Outputs from this function are returned to the command line.
        end
        function varargout = cart_geo3_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.popupmenu1;
     
        end
     
        function edit1_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
        % --- Executes during object creation, after setting all properties.
        end
        function edit1_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
     
     
        end
        function edit2_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
     
     
        % --- Executes during object creation, after setting all properties.
        end
        function edit2_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
     
        end
     
        function edit3_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
     
     
        % --- Executes during object creation, after setting all properties.
        end
        function edit3_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
     
     
        % --- Executes on button press in pushbutton1.
        end
        function pushbutton1_Callback(hObject, eventdata, handles)
        opengl hardware
        % hObject    handle to pushbutton1 (see GCBO)
        % eventdata  reserved - to be defined in a future version of MATLAB
        % handles    structure with handles and user data (see GUIDATA)
        global p
        X = get(handles.edit1,'string');
        X=str2double(X);
        Y = get(handles.edit2,'string');
        Y=str2double(Y);
        Z = get(handles.edit3,'string');
        Z=str2double(Z);
        val = get(handles.popupmenu1,'Value');
        guidata(hObject, handles);
        p.MyData =[p.MyData ;[{lambda} {Phi} {h}]];
        set(handles.uitable1,'Data',p.MyData)
        % --- Executes on button press in pushbutton2.
        end
        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)
        set(handles.edit1, 'String', '');
        set(handles.edit2, 'String', '');
        set(handles.edit3, 'String', '');
     
        % --- Executes on button press in pushbutton3.
        end
        function pushbutton3_Callback(hObject, eventdata, handles)
        % hObject    handle to pushbutton3 (see GCBO)
        % eventdata  reserved - to be defined in a future version of MATLAB
        % handles    structure with handles and user data (see GUIDATA)
        accueil
     
     
        % --- Executes on selection change in popupmenu1.
        end
        function popupmenu1_Callback(hObject, eventdata, handles)
        % hObject    handle to popupmenu1 (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 popupmenu1 contents as cell array
        %        contents{get(hObject,'Value')} returns selected item from popupmenu1
        %contents = cellstr(get(hObject,'String'));
        %parametres del'ellipsoide en question
        %pop_choice = contents{get(hObject,'Value')}
        %pop_choice = contents{get(hObject,'Value')}
        handles.WGS84=WGS84;
        handles.GRS80=GRS80;
        handles.CLARKE1880=CLARKE1880;
        val=get(handles.popupmenu1, 'Value');
        str = get(handles.popupmenu1, 'string');
        if Valider_choix==1
        switch str(val)
            case 'WGS84'
            handles.current_data='WGS84'
            case 'GRS80'
            handles.current_data='GRS80'
            case 'CLARKE1880'
            handles.current_data='CLARKE1880'
        end
        end
        handles.output = hObject;
        guidata(hObject, handles);
         switch val
            case 'WGS84'
            X = get(handles.edit1,'string');
            X=str2double(X);
            Y = get(handles.edit2,'string');
            Y=str2double(Y);
            Z = get(handles.edit3,'string');
            Z=str2double(Z);
            a = 6378137;
            b = 6356752.314245;
            e = sqrt((a^2)-(b^2))/a;
            f = 1 - (sqrt(1 - e^2));
            R = sqrt((X^2)+ (Y^2) + (Z^2));
            c = sqrt(X^2 + Y^2);
            mu = atan((Z/c)*((1-f)+ (e^2)*a/R)); 
            lambda = atan(Y/X);
            Phi = atan((Z*(1-f)+(e^2)*a*(sin(mu))^3)/((1-f)*(sqrt(c)-(e^2)*a*(cos(mu))^3)));
            h = sqrt(c)*cos(Phi) + Z*sin(Phi) - a*sqrt(1-(e^2)*(sin(Phi))^3);
            case 'GRS80'
            X = get(handles.edit1,'string');
            X=str2double(X);
            Y = get(handles.edit2,'string');
            Y=str2double(Y);
            Z = get(handles.edit3,'string');
            Z=str2double(Z);
            a = 6378137;
            b = 6356752.314140;
            e = sqrt((a^2)-(b^2))/a;
            f = 1 - (sqrt(1 - e^2));
            R = sqrt((X^2)+ (Y^2) + (Z^2));
            c = sqrt(X^2 + Y^2);
            mu = atan((Z/c)*((1-f)+ (e^2)*a/R)); 
            lambda = atan(Y/X);
            Phi = atan((Z*(1-f)+(e^2)*a*(sin(mu))^3)/((1-f)*(sqrt(c)-(e^2)*a*(cos(mu))^3)));
            h = sqrt(c)*cos(Phi) + Z*sin(Phi) - a*sqrt(1-(e^2)*(sin(Phi))^3);
            case 'CLARKE1880'
            X = get(handles.edit1,'string');
            X=str2double(X);
            Y = get(handles.edit2,'string');
            Y=str2double(Y);
            Z = get(handles.edit3,'string');
            Z=str2double(Z);
            a = 6378249.145;
            b = 6356514.870;
            e = sqrt((a^2)-(b^2))/a;
            f = 1 - (sqrt(1 - e^2));
            R = sqrt((X^2)+ (Y^2) + (Z^2));
            c = sqrt(X^2 + Y^2);
            mu = atan((Z/c)*((1-f)+ (e^2)*a/R)); 
            lambda = atan(Y/X);
            Phi = atan((Z*(1-f)+(e^2)*a*(sin(mu))^3)/((1-f)*(sqrt(c)-(e^2)*a*(cos(mu))^3)));
            h = sqrt(c)*cos(Phi) + Z*sin(Phi) - a*sqrt(1-(e^2)*(sin(Phi))^3);
        end
        % --- Executes during object creation, after setting all properties.
        end
        function popupmenu1_CreateFcn(hObject, eventdata, handles)
        % hObject    handle to popupmenu1 (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
        end
    Ingénieur indépendant en mécatronique - Conseil, conception et formation
    • Conception mécanique (Autodesk Fusion 360)
    • Impression 3D (Ultimaker)
    • Développement informatique (Python, MATLAB, C)
    • Programmation de microcontrôleur (Microchip PIC, ESP32, Raspberry Pi, Arduino…)

    « J'étais le meilleur ami que le vieux Jim avait au monde. Il fallait choisir. J'ai réfléchi un moment, puis je me suis dit : "Tant pis ! J'irai en enfer" » (Saint Huck)

  13. #13
    Futur Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Mai 2017
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mai 2017
    Messages : 13
    Points : 7
    Points
    7
    Par défaut Jerome, l'interface s'est toujours affichée;
    Je réitère mes mots. le problème se trouve entre mon bouton popupmenu où je demande à l'utilisateur de choisir le système et mon bouton pusbutton qui est "convertir". Je reçoit des erreurs et mes valeurs ne s'affichent pas au niveau du tableau. Ils ne sont pas connectés.
    Je vous prierai de tester mon programme et vous verrai ce dont je parle. Merci

  14. #14
    Rédacteur/Modérateur

    Avatar de Jerome Briot
    Homme Profil pro
    Freelance mécatronique - Conseil, conception et formation
    Inscrit en
    Novembre 2006
    Messages
    20 302
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Freelance mécatronique - Conseil, conception et formation

    Informations forums :
    Inscription : Novembre 2006
    Messages : 20 302
    Points : 53 163
    Points
    53 163
    Par défaut
    Voir les fichiers ci-joint
    Fichiers attachés Fichiers attachés
    Ingénieur indépendant en mécatronique - Conseil, conception et formation
    • Conception mécanique (Autodesk Fusion 360)
    • Impression 3D (Ultimaker)
    • Développement informatique (Python, MATLAB, C)
    • Programmation de microcontrôleur (Microchip PIC, ESP32, Raspberry Pi, Arduino…)

    « J'étais le meilleur ami que le vieux Jim avait au monde. Il fallait choisir. J'ai réfléchi un moment, puis je me suis dit : "Tant pis ! J'irai en enfer" » (Saint Huck)

  15. #15
    Futur Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Mai 2017
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mai 2017
    Messages : 13
    Points : 7
    Points
    7
    Par défaut Merci beaucoup Jerome
    Pour la résolution de mon problème. Le code marche comme voulu.

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

Discussions similaires

  1. Probleme de connexion de mon imprimante reseau
    Par Le Pharaon dans le forum Windows XP
    Réponses: 10
    Dernier message: 21/07/2008, 12h15
  2. simuler des connexion a mon site..
    Par questionneuse dans le forum Tests et Performance
    Réponses: 3
    Dernier message: 11/07/2006, 14h05
  3. Connexion a mon mysql
    Par aliwassem dans le forum SQL Procédural
    Réponses: 8
    Dernier message: 11/06/2006, 19h35
  4. Réponses: 1
    Dernier message: 04/03/2006, 21h56
  5. Paramétrer le nombre de connexion sur mon serveur Mysql
    Par Zerga dans le forum Installation
    Réponses: 2
    Dernier message: 12/12/2003, 19h21

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