Why can't I instanciate, create, construct class objects via cellfun?

4 次查看(过去 30 天)
This is an example class file:
classdef tmp < handle
properties
str
end
methods
function self = tmp(str)
self.str = str;
end
end
end
Then
cellfun(@tmp,{'a','b'})
produces the error:
Error using cellfun
tmp output type is not currently implemented.

采纳的回答

Walter Roberson
Walter Roberson 2014-4-8
Use 'uniform', 0 for cellfun. If you need to convert to a matrix afterwards you can cell2mat()

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Assembly 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by