필터 지우기
필터 지우기

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