How do I fix this error? If I put x/number it works.

1 次查看(过去 30 天)
clear all
close all
clc
figure
X = 200:250:2500;
Y = 1.82*10^14*exp(-38370/X);
plot(X,Y)
Error in Plot_MECH558_HW3Q2 (line 7)
Y = 1.82*10^14*exp(-38370/X);

采纳的回答

Bish Erbas
Bish Erbas 2018-9-26
figure; X = 200:250:2500; Y = 1.82*10^14*exp(-38370./X); plot(X,Y)
When you want to multiply or divide every element of a vector, you will need to use . before the / or * operator. Above line works for me.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by