필터 지우기
필터 지우기

I'm trying to plot this graph with the x-values between -10 and 50, but the graph plots them between 0 and 60?

조회 수: 1 (최근 30일)
a = bin2dec('00010101') b = bin2dec('00010010') c = bin2dec('11000101')
x =[(-10):1:50]
y1 = (-b.*((x-a).^2))+c y2 = (c.*x)-a
hold on plot (y1) plot (y2)

채택된 답변

Jan
Jan 2017년 10월 10일
편집: Jan 2017년 10월 10일
a = bin2dec('00010101');
b = bin2dec('00010010');
c = bin2dec('11000101')
x = -10:50; % Nicer and faster than: [(-10):1:50]
y1 = (-b.*((x-a).^2))+c;
y2 = (c.*x)-a;
plot(x, y1);
hold on
plot(x, y2);
You need to specify x in the plot() command, otherwise Matlab assumes it is 1:length(y).

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by