1 2 3 4 5 6 7 8 9 10 11 12 13 14
| % --- Executes during object creation, after setting all properties.
function Graphe2_CreateFcn(hObject, eventdata, handles)
% hObject handle to Graphe2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: place code in OpeningFcn to populate Graphe2
global RESULTAT
axes(hObject)
indice = [1:1:RESULTAT.Nmodemax];
plot(indice,RESULTAT.DeltaVbrut*1000,'--',indice,RESULTAT.DeltaV*1000)
xlabel('Number of Fourier modes')
ylabel('Volume variation (mm3)')
legend('DeltaV brut','DeltaV corrigé') |
Partager