to divide two cell arrays with each cell array containing one column

2 vues (au cours des 30 derniers jours)
sarfudeen
sarfudeen le 31 Mar 2013
to divide two cell arrays with each cell array containing one column

Réponses (1)

the cyclist
the cyclist le 31 Mar 2013
You do not provide quite enough detail, but I will make a guess at what you are trying to do.
If your cell arrays look like this:
% Here are some pretend data
C1 = {rand(3,1)};
C2 = {rand(3,1)};
Then you could divide those two columns like this:
C1{:}./C2{:}
There are also other approaches, and the best one may depend on what you want the output to look like.

Catégories

En savoir plus sur Use COM Objects in MATLAB dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by