Subscripted assignment dimension mismatch.

2 次查看(过去 30 天)
Hi
I have the vector price <1xn struct> in which we have a several information about a price of a stock. I want to have a vector in which we have all tickers name of the stock, with the following:
nome=zeros(size(price));
for t=1:size(price,2);
nome(1,t)= price(1, t).Ticker;
end
but I have the error: Subscripted assignment dimension mismatch.

采纳的回答

Walter Roberson
Walter Roberson 2016-3-14
It is not possible to have a vector of strings in MATLAB, because strings are really vectors of characters. You will need to use cell arrays of strings:
nome{1,t} = price(1, t).Ticker;
  4 个评论
fede
fede 2016-3-14
编辑:Walter Roberson 2016-3-14
yeah but with the following code
for t=1:size(price,2);
nome(1,t)= price(1, t).Ticker;
end
i obtain only a cell of 1x1, indeed 1xn

请先登录,再进行评论。

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by