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 :

probleme des axes [Débutant]


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 probleme des axes
    bonjour tout le monde;
    s'il vous plait je veut créer une interface comprend 4 axes et 4 button je veux que le résultat de chaque puttoon s'affiche dans l'axes que je veux sachant que les résultats ce sont des graphe polar.
    j'ai essaye avec polar(handle.axes1,x,y) et ça marche pas,
    s'il vous plait s'il y a quelqu’un peut m'aider et merci d'avance.

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

    Pourrait-on avoir une description plus précise de ce qui "ne marche pas" ?

  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
    je veux associe chaque axes de ma figure à diagramme polar

    c'est à dire positionner mes graphes polaire dans le bon axe

  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 166
    Points
    53 166
    Par défaut
    Montre nous le code que tu as écris (même si c'est faux)
    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
    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
    voila le 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
    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
    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 18-Sep-2014 14:20:05
     
    % 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;
     
     
    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
     
     
    % --- 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
     
     
    % --- 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
     
     
     
     
    % --- 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
     
     
    % --- 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
     
     
     
    % --- 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 infinis.
    function infinis_Callback(hObject, eventdata, handles)
    % hObject    handle to infinis (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    f=str2double(get(handles.f,'String'));
    lamda = str2double(get(handles.L,'String'));
    h10 = str2double(get(handles.h1,'String'));
    h20 = str2double(get(handles.h2,'String'));
    d0 = str2double(get(handles.d,'String'));
     
    essaf(f,lamda,h10,h20,d0);
     
    % --- Executes on button press in sans.
    function sans_Callback(hObject, eventdata, handles)
    % hObject    handle to sans (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    f=str2double(get(handles.f,'String'));
    lamda = str2double(get(handles.L,'String'));
    h10 = str2double(get(handles.h1,'String'));
    h20 = str2double(get(handles.h2,'String'));
    d0 = str2double(get(handles.d,'String'));
    sans(f,lamda,h10,h20,d0);
     
     
    % --- Executes on button press in infinis.
    function finis_Callback(hObject, eventdata, handles)
    % hObject    handle to infinis (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    f=str2double(get(handles.f,'String'));
    lamda = str2double(get(handles.L,'String'));
    h10 = str2double(get(handles.h1,'String'));
    h20 = str2double(get(handles.h2,'String'));
    d0 = str2double(get(handles.d,'String'));
    finis(f,lamda,h10,h20,d0);
     
    % --- Executes on button press in propre.
    function propre_Callback(hObject, eventdata, handles)
    % hObject    handle to propre (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    propre();
     
     
    % --- Executes on button press in retour.
    function retour_Callback(hObject, eventdata, handles)
    % hObject    handle to retour (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    close;
    vorc();
     
     
    % --- Executes on button press in initialiser.
    function initialiser_Callback(hObject, eventdata, handles)
    % hObject    handle to initialiser (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    ensite();

  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
    et voila le code de mon programme qui affiche le resultat:
    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
     
    function essaf(f,lamda,h10,h20,d0 )
    %UNTITLED7 Summary of this function goes here
     
     
    h11=h10*lamda;
    h22=h20*lamda;
     
    a=0:pi/180:pi/2;
    y=abs(cos(a).*sin(2*pi*h11*sin(a)/lamda));
    polar(a,y)
     
    %   Detailed explanation goes here
     
     
    end

  7. #7
    Invité
    Invité(e)
    Par défaut
    Si j'ai bien compris du peu d'explication donné, je dirais qu'il te faut passer le handle de l'objet Axes voulu en paramètre :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    function infinis_Callback(hObject, eventdata, handles)
    % hObject    handle to infinis (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    f=str2double(get(handles.f,'String'));
    lamda = str2double(get(handles.L,'String'));
    h10 = str2double(get(handles.h1,'String'));
    h20 = str2double(get(handles.h2,'String'));
    d0 = str2double(get(handles.d,'String'));
    ax = handles.axes1;
    essaf(ax, f,lamda,h10,h20,d0);
    puis l'utiliser :
    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
    function essaf(ax, f,lamda,h10,h20,d0 )
    %UNTITLED7 Summary of this function goes here
    
    
    h11=h10*lamda;
    h22=h20*lamda;
    
    a=0:pi/180:pi/2;
    y=abs(cos(a).*sin(2*pi*h11*sin(a)/lamda));
    polar(ax, a,y)
    
    %   Detailed explanation goes here
    
    
    end

  8. #8
    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 resolu
    merci pour votre réponse
    oui c'est ce que j'ai fait et ça marche très bien mais cette fois-ci sans ax qui est dans le deuxième fonction

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

Discussions similaires

  1. probleme lors de la modification des axes
    Par ritoneau dans le forum MATLAB
    Réponses: 3
    Dernier message: 05/09/2012, 13h13
  2. [JFreeChart] GanttChart probleme des axes
    Par nabil148911 dans le forum 2D
    Réponses: 13
    Dernier message: 04/08/2008, 12h17
  3. probleme des utilisateurs
    Par frome dans le forum PostgreSQL
    Réponses: 3
    Dernier message: 24/03/2004, 15h10
  4. [VB6] Modification des axes d'un composant Chart
    Par HPJ dans le forum VB 6 et antérieur
    Réponses: 2
    Dernier message: 21/05/2003, 08h33

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