Why doesn't this matlab code work?!
1 次查看(过去 30 天)
显示 更早的评论
s={'CCCAGCTCCCGAATTCCCCAGCTA'};
rec={'AG^CT'};
x=strfind(rec,'^');
y=rec;
y(x)=[]
I get:
Error using subsindex Function 'subsindex' is not defined for values of class 'cell'.
Error in Untitled555555 (line 5) y(x)=[]
0 个评论
采纳的回答
Stephen23
2015-1-3
编辑:Stephen23
2015-1-3
Because x is a cell array, and you are trying to use this to index into the variable y, which is not supported in MATLAB (indices must be numeric or logical). If you have a look in your workspace you will find that all of your variables are in fact cell arrays... is this intentional? Depending on your application it may be unnecessary to use cell arrays at all:
s = 'CCCAGCTCCCGAATTCCCCAGCTA';
rec = 'AG^CT';
x = strfind(rec,'^');
y = rec;
y(x)=[];
using no cell arrays, and works without error. If you think you really do need to use cell arrays, please post more details of what you are trying to achieve and we can help you further with the best way to code it using MATLAB.
These might be of interest:
0 个评论
更多回答(3 个)
Ahmad
2015-1-3
1 个评论
Image Analyst
2015-1-3
Your error doesn't match your code. In the strfind, do you have y or {y} ? And if it's {y}, then why???
Say, did you ever look at the FAQ link I gave you? Please do. I gave it to you because I think it will help you understand cell arrays. If you can't understand the FAQ, let me know and I'll clarify it.
Ahmad
2015-1-3
1 个评论
Image Analyst
2015-1-3
Not sure you do understand cells yet because you'd know that y{1} means "contents of the first cell of y". So y is a cell or a cell array (a columns or row vectors). Then 1 means take the first cell in the row, or first cell in the column, and get the contents of it, which could be virtually anything - a string, a structure, a double, an image, even another cell. In your case y is a cell array where the cells contain strings, so y{1} is a string.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Numeric Types 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!