Error in displaying the whole matrix
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Elzbieta
le 26 Août 2024
Modifié(e) : Walter Roberson
le 26 Août 2024
Hello,
When I try to display the whole matrix I receive the data in the following shape:
-0.0008 0.0001 0.0000
-0.0005 0.0001 0.0000
-0.0004 0.0001 0.0000
-0.0002 0.0001 0.0000
-0.0000 0.0001 0.0000
However when I attempt to display the portion of matrix teh result is correct:
-823 8 1
-584 8 1
-409 8 1
-304.928530000000 8 1
-298.500000000000 8 1
-300.750000000000 8 1
The content of the workspace variable is correct.
The code responsible for this is as follows:
filename = {'Alessandra' 'Alfredo'};
dataConditionDevice = [];
for ifile=1:1%length(filename)
filename{ifile}
filenameEditedTxt = fullfile(pathDataActivityDevice,[filename{ifile},'_trial_data.txt'])
dataConditionDevice = load(filenameEditedTxt);
end
Regards
0 commentaires
Réponse acceptée
Aquatris
le 26 Août 2024
Modifié(e) : Aquatris
le 26 Août 2024
Ther eis probably a 1e6 at the top of the display. You can do 'format bank' to mitigate this if you want or any other format options. Example:
% random matrix with entries that vary in magnitude
A = [-823 8 1e6
-584 8 1
-409 8 1
-304.928530000000 8 1
-298.500000000000 8 1
-300.750000000000 8 1];
% display the matrix
A
% display subsection of matrix
A(1:2,1:2)
% display via format bank
format bank
A
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Filter Banks dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!