Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在matlab中使用以下函数:
getgenpept(AccessionNumber)
其中唯一的参数是唯一标识符。问题是我希望拥有一个包含大约 50 条不同记录的结构,所有这些记录都基于它们的唯一标识符。有没有一种方法可以定义一个结构,然后添加我的 50 条不同的记录,或者最好事先指定一个标识符列表并getgenpept()一次性循环该函数?
getgenpept()
我想最终得到一个将每条记录存储在自己的单元格中的单元格数组。
希望这很清楚!
如果 A 是一个包含所有标识符的元胞数组,那么它很简单:
A = {'AAA59174', 'AAA59175','AAA59176'}; B = cellfun(@getgenpept,A);
B(1) 是“AAA59174”的记录,以此类推。