Why my function do not work and gives me an error message?
Mostra commenti meno recenti
function [y] = SEM(x)
% Find out the each column of standard error for a matrix
% x should be a nxm matrix or 1xm
y = nanstd(x)./sqrt(length(x) - sum(isnan(x)));
disp(y);
end
Command window:
>> x=weightm;
>> y=SEM(x)
Subscript indices must either be real positive integers or logicals. Error message: Subscript indices must either be real positive integers or logicals.
1 Commento
Morteza Hajitabar Firuzjaei
il 29 Gen 2018
Dear friend,
you used indices, you should make sure you are using integers as indices or make sure you are using vectors or matrices
best wishes
Morteza Hajitabar Firuzjaei
Risposta accettata
Più risposte (1)
Morteza Hajitabar Firuzjaei
il 29 Gen 2018
0 voti
Dear friend,
you used indices, you should make sure you are using integers as indices or make sure you are using vectors or matrices
best wishes
Morteza Hajitabar Firuzjaei
Categorie
Scopri di più su Elementary Math in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!