way to legend a data organized into colours in simple plot?
first_data = [[3 4 8 1];[3 6 4 9]]; % desired legend (first) & color (green)
second_data = [[1 3 5];[3 2 7];[3 4 2]]; % desired legend (second) & color (cyan)
combine = {first_data,second_data}; % recieving new data in every ‘for’ loop iteration thats why combining
colours = {‘g’,’c’};
Legend_Names = {‘first’,’second’};
for i = 1:length(combine)
plot(cell2mat(combine(i)),’Color’,cell2mat(colours(i)),’LineWidth’,2); grid on; hold on;
end
legend(Legend_Names)
i wish to plot my each data set with same colour… in this case legend ”Second” should have ”cyan” colourfirst_data = [[3 4 8 1];[3 6 4 9]]; % desired legend (first) & color (green)
second_data = [[1 3 5];[3 2 7];[3 4 2]]; % desired legend (second) & color (cyan)
combine = {first_data,second_data}; % recieving new data in every ‘for’ loop iteration thats why combining
colours = {‘g’,’c’};
Legend_Names = {‘first’,’second’};
for i = 1:length(combine)
plot(cell2mat(combine(i)),’Color’,cell2mat(colours(i)),’LineWidth’,2); grid on; hold on;
end
legend(Legend_Names)
i wish to plot my each data set with same colour… in this case legend ”Second” should have ”cyan” colour first_data = [[3 4 8 1];[3 6 4 9]]; % desired legend (first) & color (green)
second_data = [[1 3 5];[3 2 7];[3 4 2]]; % desired legend (second) & color (cyan)
combine = {first_data,second_data}; % recieving new data in every ‘for’ loop iteration thats why combining
colours = {‘g’,’c’};
Legend_Names = {‘first’,’second’};
for i = 1:length(combine)
plot(cell2mat(combine(i)),’Color’,cell2mat(colours(i)),’LineWidth’,2); grid on; hold on;
end
legend(Legend_Names)
i wish to plot my each data set with same colour… in this case legend ”Second” should have ”cyan” colour plot, legend MATLAB Answers — New Questions