How to call a variable from a string table and do subsequent operations, then save it as a new variable.

1 次查看(过去 30 天)
I have included a picture to ilustrate the situation and added the table file as an attachment.
I would like to call the variable in colum 3 (100 + n),
convert the string to a usable format (int?),
do the addition (100 + n) with a given number n in the editor.
Then call the variable in colum 4, convert it, and do the subtraction x = (number from colum 4) - (given number y)
Finally, multiply the result from (100 + n) with x,
and save that result in a table in workspace asigned to the eqvivalent row variable in colum 1,
and do the same operation for every subsequent row.
Thank you for your answer.

回答(1 个)

Seth Furman
Seth Furman 2021-11-4
I would like to convert the string in variable 3 to numeric
Take a look at sscanf.
text = ["100 + n", "115 + n"];
data = zeros(1, length(text));
for i = 1:length(text)
data(i) = sscanf(text(i), "%g + n");
end
data
data = 1×2
100 115

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by