matrix dimension must agree

I have been facing issues to get this equation to work out.
a = (5:0.1:20);
b = (15:0.2:40);
y = (30:0.5:40);
P = 1 + (cos(a/5)).*(sin(b/5))-((y.^2)/(a.*(b.^3)));

답변 (1개)

madhan ravi
madhan ravi 2020년 6월 3일

0 개 추천

a = linspace(5,20);
b = linspace(15,40);
y = linspace(30,40);
P = 1 + (cos(a/5)).*(sin(b/5))-((y.^2)./(a.*(b.^3)));

이 질문은 마감되었습니다.

태그

질문:

2020년 6월 3일

마감:

2021년 8월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by