本文介绍了在MATLAB中构造对象数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
说我已经在MATLAB中定义了一个类house
.
Say I have defined a class house
in MATLAB.
除了天真的循环概念外,如何构造一个类为house
的对象的数组?
How could I construct an array of objects of class house
, except the naive idea of loops?
推荐答案
您可以使用houseArray = repmat(house, numHouses, 1)
创建具有house
结构的列数组.如果需要n×m结构数组,请将1
更改为其他内容.
You can use houseArray = repmat(house, numHouses, 1)
to create a column array of house
structures. Change 1
to something else if you need an n by m structure array.
这篇关于在MATLAB中构造对象数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!