Concatenate strings and numbers
94 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I'm using the following code to try and create a "Range" for importing an excel spreadsheet into MATLAB. Instead of getting a single string, I am getting a 1x2 string for CoeffsRange. MaxRows is the number of rows in the Excel spreadsheet that contain data. Here's the code
String1=num2str(MaxRows)
CoeffsRange = ["H2:K" String1]
0 Commenti
Risposta accettata
DGM
il 9 Mar 2022
Modificato: DGM
il 9 Mar 2022
Strings and chars are different. Take care in how you combine them.
MaxRows = 10;
String1 = num2str(MaxRows) % a char vector
CoeffsRange = ["H2:K" String1] % [string char] -> string array
CoeffsRange = ['H2:K' String1] % [char char] -> char vector
CoeffsRange = "H2:K" + String1 % string + char -> string
CoeffsRange = strcat("H2:K",String1) % or use strcat()
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Spreadsheets in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!