Make an average curve graph

조회 수: 7 (최근 30일)
bozheng
bozheng 2024년 1월 30일
편집: Dyuman Joshi 2024년 3월 22일
i wrote two code one is 20 line trend another i want to creat an average curve graph , but there is a little strange, It feels like the average will be between 4-6
code1----------------------------
img1 = imread('20230814.jpg');
img = (-0.2./ (-0.3 ./ (46 ./ double(img1) - 1)) + 1) * 5;
center_row_data = img(415:435, 1:755);
subplot(2,1,2)
plot(center_row_data.');
title('Plotting each Row as a Line');
code2---------------------------
img1 = imread('20230814.jpg');
img = (-0.2./ (-0.3 ./ (45.39 ./ double(img1) - 1)) + 1) * 5.3;
center_row_data = img(415:435, 1:755);
average_data = mean(center_row_data, 2);
subplot(2, 1, 2);
plot(average_data);
title('average trend');
xlabel('列');
ylabel('温度');
  댓글 수: 4
Dyuman Joshi
Dyuman Joshi 2024년 1월 30일
편집: Dyuman Joshi 2024년 3월 22일
Unless mentioned specifically, MATLAB selects the limits on the axes based on the range of your data.
You can change the limits shown on the y-axis via ylim.
Dyuman Joshi
Dyuman Joshi 2024년 2월 25일
이동: Dyuman Joshi 2024년 3월 22일
Any updates, @bozheng?

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

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

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by