adding a colormap('jet') to my grapgh please help me
5 次查看(过去 30 天)
显示 更早的评论
script code :
clc;
close all;
center=[0,0]; %Defining the center of circle ((origin))
%Plotting the first circle at different radius and here i choose from 1 to
%5 radiuses
for radius=1:5 % for loop, 1 to 5 making five completed circle
[x,y]=getCircle(center,radius); %Calling the function
plot(x,y,'LineWidth',4); %Plot Circle in one frame / here Linewidth is used to adjust (increase) the width of the line of the circle
axis([-6 6 -5 5]) %Defining required axis [ -x x -y y ]
title('5 Circles different radius')
grid on;
hold on;
end %end for loop
% function code:
function [x,y]=getCircle(center,radius)
t=[0:360];
x=radius*cos(t*(pi/180)); %Claculate the x axis
y=radius*sin(t*(pi/180)); %Claculate the y axis
colormap('jet'); %i added the colormap('jet') here but still no changes can u help me please
end
0 个评论
采纳的回答
Image Analyst
2022-12-12
You can specify the color in the call to plot():
clc;
close all;
center=[0,0]; %Defining the center of circle ((origin))
%Plotting the circles at different radius.
% Here I chose from 1 to 5 radiuses.
numRadiuses = 5;
% Get the 5 colors from the "jet" colormap.
plotColors = jet(numRadiuses);
for radius=1:numRadiuses % for loop, 1 to 5 making five completed circle
[x,y] = getCircle(center, radius); % Calling the function
fprintf('Printing circle #%d in this color : [%f, %f, %f].\n', ...
radius, plotColors(radius, 1), plotColors(radius, 2), plotColors(radius, 3));
plot(x,y, '-', 'Color', plotColors(radius, :), 'LineWidth',4); %Plot Circle in one frame / here Linewidth is used to adjust (increase) the width of the line of the circle
axis([-6 6 -5 5]) %Defining required axis [ -x x -y y ]
hold on;
end % end for loop
caption = sprintf('%d Circles of different radius', numRadiuses);
title(caption)
grid on;
legend('Location', 'northwest')
% function code:
function [x,y]=getCircle(center,radius)
t = 0 : 360;
x = radius * cos(t*(pi/180)); % Calculate the x axis
y = radius * sin(t*(pi/180)); % Calculate the y axis
end
更多回答(1 个)
Les Beckham
2022-12-12
center=[0,0]; %Defining the center of circle ((origin))
%Plotting the first circle at different radius and here i choose from 1 to
%5 radiuses
for radius=1:5 % for loop, 1 to 5 making five completed circle
[x,y]=getCircle(center,radius); %Calling the function
plot(x,y,'LineWidth',4); %Plot Circle in one frame / here Linewidth is used to adjust (increase) the width of the line of the circle
colormap('jet'); % <<< Moved this to where it belongs
axis([-6 6 -5 5]) %Defining required axis [ -x x -y y ]
title('5 Circles different radius')
grid on;
hold on;
end %end for loop
function [x,y]=getCircle(center,radius)
t=[0:360];
x=radius*cos(t*(pi/180)); %Claculate the x axis
y=radius*sin(t*(pi/180)); %Claculate the y axis
end
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Orange 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!