mod(x,y) function not found
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Fernando Lucero
le 16 Jan 2020
Réponse apportée : Fernando Lucero
le 16 Jan 2020
i need a numbers in my answer
Medicion=get(handles.TablaMediciones,'data');
Resolucion=str2double(BibliotecaHerramientas(a,8));
Medicion=cellfun(@str2num,Medicion);
NoResolucion=mod(Medicion,Resolucion)
NoResolucion =
NaN NaN NaN NaN NaN
4 commentaires
Adam Danz
le 16 Jan 2020
Modifié(e) : Adam Danz
le 16 Jan 2020
No, those aren't the values of those two variables. If those two variables were cell arrays, you wouldn't get a vector of NaNs as output. You would get an error.
mod(num2cell(1:5),{5})
Undefined function 'mod' for input arguments of type 'cell'.
Even if they were vectors and not cell arrays, you would get 0s, not NaNs.
mod([36,36.1,35.9,36,36.1], 0.01)
ans =
0 0 0 0 0
So please take a closer look at those variable values that are being fed into mod().
Also, if those are the intended inputs to mod(), I'm curious what the goal is.
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Operators and Elementary Operations 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!