Hi @ Skill_s,
First, generate sample data using the peaks function to plot the figures. Then, create three separate figures using the figure command. For each figure, use the surf function to plot the data. Then, set a different colormap for each figure using the colormap function. By specifying different colormaps ('spring', 'summer', 'autumn'), each figure will have a distinct color scheme. This was help you visualize multiple figures simultaneously with unique colors, making it easier to differentiate between them effectively. Feel free to customize the colormaps further to suit your preferences and enhance the visual appeal of your plots. Here is example code snippet,
% Create data for plotting
[X,Y,Z] = peaks(45);
% Plot the first figure with a specific color
figure;
surf(X,Y,Z);
colormap('spring'); % Set colormap for the figure
% Plot the second figure with a different color
figure;
surf(X,Y,Z);
colormap('summer'); % Set a different colormap for the figure
% Plot the third figure with another color
figure;
surf(X,Y,Z);
colormap('autumn'); % Set a different colormap for the figure
Hope this will get you started now. Please let me know if you have any further questions.