Seperate string and number
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
garima sharma
le 3 Juin 2022
Réponse apportée : Stephen23
le 3 Juin 2022
I am reading data through serial port with a format below (char). ADC1: 123.7834 1.0139 How to separate the data? I want 123.7839 in one coloum and 1.0139 in other coloum. All are separated by space.
0 commentaires
Réponse acceptée
Stephen23
le 3 Juin 2022
T = 'ADC1: 123.7834 1.0139';
V = sscanf(T,'ADC1:%f%f',[2,Inf]).'
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Characters and Strings 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!