Hi,
I am new to MATLAB and I needed to solve the equation below for different values. However, y function should give me multiple values while it is only giving me a single value (106.2).
Can someone please tell me what the problem with the code is.
clc
x = [100:100:6000];
y = (3500*sqrt(x/30))/(1.4*sqrt(x/30)+0.115*x-276);

 채택된 답변

VBBV
VBBV 2021년 4월 10일

0 개 추천

%if
(3500*sqrt(x/30))./(1.4*sqrt(x/30)+0.115*x-276)
Missing element wise operator

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Mathematics and Optimization에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by