필터 지우기
필터 지우기

adding a colormap('jet') to my grapgh please help me

조회 수: 1 (최근 30일)
Saleh
Saleh 2022년 12월 12일
댓글: Saleh 2022년 12월 12일
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

채택된 답변

Image Analyst
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
Printing circle #1 in this color : [0.000000, 0.500000, 1.000000]. Printing circle #2 in this color : [0.000000, 1.000000, 1.000000]. Printing circle #3 in this color : [0.500000, 1.000000, 0.500000]. Printing circle #4 in this color : [1.000000, 1.000000, 0.000000]. Printing circle #5 in this color : [1.000000, 0.500000, 0.000000].
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
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
  댓글 수: 3
Saleh
Saleh 2022년 12월 12일
so i cannot achieve it ?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Colormaps에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by