How to divide a vector by a constant?

조회 수: 1 (최근 30일)
Lance Shallenberger
Lance Shallenberger 2021년 9월 16일
댓글: Lance Shallenberger 2021년 9월 16일
c=3*10^8
c = 300000000
speeds=(.1*c:.9*c/8:.9*c)
speeds = 1×8
30000000 63750000 97500000 131250000 165000000 198750000 232500000 266250000
y=1/sqrt(1-(speeds.^2./c^2))
Error using /
Matrix dimensions must agree.
What is my error?

채택된 답변

Image Analyst
Image Analyst 2021년 9월 16일
The denominator with sqrt() is a vector so you need a dot before the slash
y = 1 ./ sqrt(1 - (speeds .^ 2 ./ c ^ 2))

추가 답변 (1개)

Cris LaPierre
Cris LaPierre 2021년 9월 16일
You need to use elementwise division everywhere in your equation for y
c=3*10^8;
speeds=(.1*c:.9*c/8:.9*c);
% v
y=1./sqrt(1-(speeds.^2./c^2))
y = 1×8
1.0050 1.0234 1.0574 1.1121 1.1974 1.3350 1.5824 2.1701

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by