Скачиваний:
0
Добавлен:
24.06.2025
Размер:
337 б
Скачать
clear; clc
x1=[0 1 2 3 4 5 6 8 10 15 20];
y1 = [0 12.7 30.3 47.3 59.1 65.2 60.3 52.3 44 30.9 24.2]; % Темновой 20см
xx = linspace(min(x1),max(x1));
f1 = polyval(polyfit(x1,y1,4),xx);
plot(x1,y1,'^',xx,f1,'LineWidth', 2)
grid on
xlabel('U, B')
ylabel('I, mA')
zoom(1)
ax = gca;
exportgraphics(ax, 'pozistorvach.jpg')
Соседние файлы в папке ФАЙЛЫ ДЛЯ ГРАФИКОВ MATLAB