Convert double type string to data type
Mostrar comentarios más antiguos
%These commands generate the random integers described in the problem statement. %Do not overwrite the values of X and Y in your own code. X = randi([1 10]); Y = randi([1 10]); %Enter the commands for your script mfile here. XandY = ([X, Y]) XplusY = ([X + Y])
1 comentario
dpb
el 8 de Nov. de 2020
The question is totally unclear as to what you are trying to do/ask...give example of what you would want a result to be and for what purpose.
Respuesta aceptada
Más respuestas (2)
Mathieu NOE
el 9 de Nov. de 2020
hi
simply use the string() command like :
>> X = pi
X =
3.1416
>> str = string(X)
str =
"3.1416"
1 comentario
I W
el 9 de Nov. de 2020
Mathieu NOE
el 9 de Nov. de 2020
so this is simple string concatenation and then disp (for display in command window:
X = pi
Y = 2.234
disp(['The value of X is ' num2str(X) ' and the value of Y is ' num2str(Y) ' bla bla'])
gives
The value of X is 3.1416 and the value of Y is 2.234 bla bla
3 comentarios
I W
el 9 de Nov. de 2020
Mathieu NOE
el 9 de Nov. de 2020
XandY = X +Y;
disp(['The value of X and Y is ' num2str(XandY)])
% you can also use sprintf
% see help sprintf
I W
el 9 de Nov. de 2020
Categorías
Más información sobre Characters and Strings en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!