Info

此问题已关闭。 请重新打开它进行编辑或回答。

How would you evaluate this ?

3 次查看(过去 30 天)
Nicholas Deosaran
Nicholas Deosaran 2020-9-15
关闭: MATLAB Answer Bot 2021-8-20
Hello good day,
I have this code, but its only give me one answer. I need it to do it for all numbers of x from 0-100 with increments of 0.2
x = 0:0.25:100; % variable x that goes from 0 to 100 in increments of 0.25
b = (3*x-4)/(x.^2) % evlauting the function from 0 to 100 with increments of 0.25
Thank you

回答(1 个)

David Hill
David Hill 2020-9-15
b = (3*x-4)./(x.^2);%need ./

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by