*.* and %s meaning in MATLAB
81 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
what does these symbols mean in MATLAB
*.* and %s
0 commentaires
Réponse acceptée
DGM
le 28 Jan 2022
Modifié(e) : DGM
le 28 Jan 2022
In an expression like
v = 'words';
fprintf('this is a progression of several %s\n',v)
%s specifies "string or character vector".
In an expression like
fname = uigetfile('*.*')
'*.*' refers to any file -- or at least any file with a dot in the middle of its full name. The asterisk is a wildcard.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Symbolic Math Toolbox 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!