Error using cellfun/wblfit
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi! I'm trying to apply weibull parameter estimate to every coloumn except for the first one i have on a table. Am I using the syntax correctly?
TtrnPosArray = table2array(TtrnPos);
C = num2cell(TtrnPosArray,1)
fitTableWbl = cellfun(@wblfit, C(:,2:171))
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/395268/image.png)
Thanks.
0 comentarios
Respuestas (1)
Divya Gaddipati
el 2 de Nov. de 2020
Make sure your TtrnPosArray contains only positive values. You could remove/replace the columns which consist of non-positive numbers.
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!