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

1 view (last 30 days)
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.

Accepted Answer

Geoff Hayes
Geoff Hayes on 28 Apr 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?

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!