Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

How would you evaluate this ?

3 visualizzazioni (ultimi 30 giorni)
Nicholas Deosaran
Nicholas Deosaran il 15 Set 2020
Chiuso: MATLAB Answer Bot il 20 Ago 2021
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

Risposte (1)

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

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by