Skip to content
Snippets Groups Projects
Commit b0ac037c authored by Wang Shiwen's avatar Wang Shiwen
Browse files

Upload New File

parent 6e7e1d3b
No related branches found
No related tags found
No related merge requests found
desired_names = ['P', "Activator"];
m = 0;
set(gcf,'Position',[0,0,700,400]);
for m = 1:length(desired_names)
for i = 1:length(name_list)
if(strcmp(desired_names(m), name_list(i)))
plot(t, value(i,:));
hold on
end
end
end
grid on
set(gca,'FontName','Times New Roman','FontSize',10);
legend(name_list, 'FontName','Times New Roman','FontSize',7, 'location','NorthWest')
title("Desired Data",'FontName','Times New Roman','FontSize',15)
xlabel("Time/s",'FontName','Times New Roman','FontSize',12)
ylabel('Concentration', 'FontName','Times New Roman','FontSize',12)
hold off
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment