Struct data assignment has error
Afficher commentaires plus anciens
am trying to calculate a distance for struct data type. The distance method is:
function ssd=distances(x, c)
m=size(x,1);
ssd = zeros(m, k);
k=size(c,1);
for i= 1:k
z = bsxfun(@minus,x, c(i,:));
ssd(:, i) = sqrt(sum(z.^2, 2));
end
end
I have c which is a random number produced from the formula below:
for i=1:20
pop(i).Position=unifrnd(2,2,4);
pop(i).dist=distances(data,pop(i).Position);
end
I have c which is a random number produced from the formula below:
for i=1:20
pop(i).Position=unifrnd(2,2,4);
pop(i).dist=distances(data,pop(i).Position);
end
x=data is 100x2.
The issue is when I call the distance method it does not accept the passing argument. pop(i).dist=distances(data,pop(i).Position);
the error is :
Non-singleton dimensions of the two input arrays must match each other. Error in distances (line 8) z = bsxfun(@minus,x, c(i,:));
5 commentaires
Adam
le 16 Déc 2016
What is 'data'? Or rather, what size is it? c is a 1x4 vector so if data is not a compatible size then you will get this error.
data needs to be of size nx4 to work in that bsxfun operation.
Adam
le 16 Déc 2016
What do you actually want to achieve, conceptually? If you start with 100x2 data and you are trying to subtract a 1x4 vector what would you expect to be result of this operation? Sure you can reshape 1x4 into 2x2 and get the bsxfun syntax to not return an error, but is that the operation you actually want to perform?
It's no use just saying that something "does not work" though. You have to say what doesn't work if you want help. "does not work" can mean anything from a variety of syntax errors to just getting a mathematically wrong answer.
Adam
le 16 Déc 2016
pop(i).Position= reshape( unifrnd(2,2,4), [2 2] );
Réponses (1)
Try
pop(i).dist=distances(data,pop(i).Position);
Instead of
pop(i).dist=distances(x= data,pop(i).Position=c);
Also in the function, distances copy initilaize ssd after getting k. What does this mean?
ssd(:,i) = sqrt(z.^2,2);
sqrt takes only one input. sqrt(z.^2); But it has no meaning, in squaring and finding the square root. Chekc the initilaization of ssd, it will throw error.
2 commentaires
KSSV
le 16 Déc 2016
Consider the other comments....you have to change your function distances
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!