HI, is there any built in function in MATLAB to check, if all the elements in cell array or double array are same or not

4 vues (au cours des 30 derniers jours)
Is there any built in function in MATLAB to check, if all the elements in cell array or double array are same or not, for example, if same then do some calculations else do something else
fck1 = {3,3,3,3,3}
% return 1 or 0 for uniqueness
if fck1% unique
%calculation
else
%calculations
end

Réponse acceptée

Fangjun Jiang
Fangjun Jiang le 14 Mai 2019
something like this
flag=numel(unique([fck1{:}]))==1

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by