Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

How would you evaluate this ?

1 visualización (últimos 30 días)
Nicholas Deosaran
Nicholas Deosaran el 15 de Sept. de 2020
Cerrada: MATLAB Answer Bot el 20 de Ag. de 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

Respuestas (1)

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by