désolé j'ai cliqué sur résolu sans faire exprès
voila mon problème
Axe de valeurs Global
x(mm) y(mm) z(mm) Valeur(N_m2)
750.5 2262.22 -4.55E-13 3.49E+06
750.5 2262.22 100 3.04E+06
750.5 2362.22 4.55E-13 2.60E+06
750.5 2362.22 100 2.11E+06
50.5 1562.22 100 1.35E+06
50.5 1562.22 -1.46E-27 2.10E+06
50.5 1662.22 -1.46E-27 1.90E+06
650.5 2262.22 -1.45E-27 2.77E+06
50.5 1662.22 100 1.84E+06
650.5 2262.22 100 2.23E+06
-749.5 2362.22 100 2.20E+06
-749.5 2362.22 -1.46E-27 2.44E+06
-749.5 2262.22 -1.46E-27 3.86E+06
-749.5 2262.22 100 2.76E+06
-49.5 1562.22 -1.46E-27 1.92E+06
-49.5 1562.22 100 1.26E+06
-49.5 -737.781 100 2.29E+06
-45.5 -745.78 -1.46E-27 2.97E+06
ce que j'ai pu faire tracer une courbe 3D avec ce code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| Valeurs = xlsread('ExportDataFileYVM.xls');
%[Valeurs Texte ValeursEtTexte] = xlsread('ExportDataFileXVM.xls');
first_column = Valeurs(:,1);
second_column = Valeurs(:,2);
% for example for a list of points with x values in the first column
% and y values in the second column, you would use:
%Valeurs= xlsread('shock_tower_pts.xlsx'); % two columns of data
xs =Valeurs(:,1);
ys = Valeurs(:,2);
% and for example you might want to plot this data:
plot(xs,ys); |
le probleme je veux que les trois coordonnées X Y Z représente un point de contrainte comment faire ?
Merci
Partager