Hi all, I want to assign variables to my single column table data of strings in matlab
2 次查看(过去 30 天)
显示 更早的评论
say I have this data in a table type: b= 'come' 'go' 'see' 'west' 'done'
and I want assign letters from A-Z to each member. so I'll have something like 'come' = A. but since the data is more than 26 rows, I'd preferably have 'come'=A1, 'go'=B1 and the last string = Zn. Any inputs would be appreciated!
2 个评论
Jan
2017-7-27
编辑:Jan
2017-7-27
The question is not clear. What does "assign letters" mean? "'come'=A1" is no valid Matlab syntax, such that we have to guess, what you want to achieve.
I hope you do not want to create the variable called "come" dynamically, because this topic is discussed daily in this forum and the answer is always the same: DON'T DO THIS. It is a shot in your knee and there is always a better solution to solve the actual problem. See Tutorial: Don't EVAL.
回答(1 个)
Saurabh Gupta
2017-7-31
As I understand, you have a column vector of unique strings and you want to determine an index in the form of "Axx to Zxx" for each of these strings based on their indices in the vector. If my understanding is correct, then I think all you need is some modulo arithmetic and integer division .
For example, lets say 'come' is at index 'i' in the vector. Then the following command will give you an index of the required form.
>> newIndex = [char(64 + mod(i,26)), num2str(idivide(i,uint32(26)))]
Note that it is only a suggestive example to demonstrate the idea. You may need to play around with it. Hope this helps!
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!