Convert double type string to data type

7 vues (au cours des 30 derniers jours)
I W
I W le 8 Nov 2020
Modifié(e) : I W le 17 Déc 2021
%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 commentaire
dpb
dpb le 8 Nov 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.

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 9 Nov 2020
output1 = compose('Hey, X was %g and Y was %g', X, Y);
  3 commentaires
Walter Roberson
Walter Roberson le 9 Nov 2020
formatSpec = "The value of X is %d, and the value of Y is %d."; %notice " not '
I W
I W le 10 Nov 2020
thank you so much

Connectez-vous pour commenter.

Plus de réponses (2)

Mathieu NOE
Mathieu NOE le 9 Nov 2020
hi
simply use the string() command like :
>> X = pi
X =
3.1416
>> str = string(X)
str =
"3.1416"
  1 commentaire
I W
I W le 9 Nov 2020
thank you that makes a lot of sense. The question asks the following:
Make a string assigned to the variable XandY and it should present the values by filling in the blank " The value of X is _, and the value of Y is _."
Make a string assigned to the variable XplusY and it should present the sum of the two numbers by filling in the blank " The sum of X and Y is _."
I understand how to get the X and Y values but I do not know how to display it how the question is asking

Connectez-vous pour commenter.


Mathieu NOE
Mathieu NOE le 9 Nov 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 commentaires
Mathieu NOE
Mathieu NOE le 9 Nov 2020
XandY = X +Y;
disp(['The value of X and Y is ' num2str(XandY)])
% you can also use sprintf
% see help sprintf
I W
I W le 9 Nov 2020
I have read through the help page for sprintf but still do not understand it.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by