Error using * Inner matrix dimensions must agree urgent help please.

1 vue (au cours des 30 derniers jours)
Or Peer
Or Peer le 28 Avr 2019
Commenté : Stephen23 le 29 Avr 2019
I got this prompt and I dont know how to solve it.
function water_vec=water_light_ray_vec(air_vec,refractive_index)
normal_vec=[0
0
1];
% normal_vec=[0;0;1];
water_vec=(air_vec-normal_vec*(air_vec*normal_vec-sqrt(air_vec*normal_vec-1+refractive_index^2)))/refractive_index ;
end
refractive index size is 1.33 1 by 1
normal_vec is [0
0
1]
air_vec is [-0.173230940506992
-0.116707951859014
0.667867059147687]
help will be very appreciated.

Réponse acceptée

Geoff Hayes
Geoff Hayes le 28 Avr 2019
Or - the error is due to the following multiplciation
air_vec*normal_vec
where both arrays/vectors are 3x1 and so the error message makes sense. What do you want to be doing here? Multiplying the two to get a scalar or do you want to keep the 3x1 dimensions?
  2 commentaires
Or Peer
Or Peer le 28 Avr 2019
I would like to keep the 3x1 dimensions, thank you for the help.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays 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