フィルターのクリア

Multi level cell multiplication

2 ビュー (過去 30 日間)
SUSHMA MB
SUSHMA MB 2015 年 4 月 7 日
回答済み: Geoff Hayes 2015 年 4 月 7 日
I have a cell of size 1x26. I want to multiply it with 100. How can i do it?

採用された回答

Geoff Hayes
Geoff Hayes 2015 年 4 月 7 日
Sushma - what are the elements of your cell array? If all of them are numeric arrays, then you could use cellfun to multiply each element in the cell array by 100. For example,
% create some random data
myCellData = cell(1,4);
myCellData{1} = randi(255,12,3);
myCellData{2} = randi(255,3,12);
myCellData{3} = randi(255,1,23);
myCellData{4} = randi(255,32,1);
% multiply each element by 100
newCellData = cellfun(@(x)100*x, myCellData,'UniformOutput',false);
Try the above and see what happens!

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by