Add files via upload

This commit is contained in:
yalmansour1998
2024-04-16 14:09:54 +02:00
committed by GitHub
parent a2f48ee452
commit bea9ec11e1

View File

@ -0,0 +1,24 @@
clc
clear all
close all
repertoire_data = 'Dataset\Shear_Wave_Rot00_CSV_Data';
fichiers = dir(fullfile(repertoire_data, '*.csv'));
tableau_3D = [];
for i = 10:(numel(fichiers) - 3)
nom_fichier = fullfile(repertoire_data, fichiers(i).name);
donnees = load(nom_fichier);
first_row = (donnees);
tableau_3D((i - 9), :, :) = abs(hilbert(first_row));
end
for i=1:52
for j=1:101
for l=1:2000
t(i,j,l)=tableau_3D(i,j,l);
end
end
end
volumeViewer(t);