Make an average curve graph
5 ビュー (過去 30 日間)
古いコメントを表示
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');
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1603686/image.jpeg)
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('温度');
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1603691/image.jpeg)
4 件のコメント
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.
回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!