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.
的反函数是cellstr什么?
cellstr
解释:首先我有:
d=["aa";"bb";"cc";"dd"];
然后我做:
d=cellstr(d);
但后来我想d恢复到开始时的状态(即矩阵)。
d
我该怎么做?/我应该使用什么功能?感谢您的回答
这应该可以完成工作: d=char(d(:,1));