Effacer les filtres
Effacer les filtres

Highligh a curve from a 3D plot

9 vues (au cours des 30 derniers jours)
letoppina
letoppina le 30 Jan 2020
Commenté : Star Strider le 3 Fév 2020
Hello,
I would like to highlight a curve (representing the maximum values of the curves) that is part of a 3D plot. I attach one picture for a reference (my objective is to obtain something like the red thick displayed in the figure). graph.png

Réponse acceptée

Star Strider
Star Strider le 30 Jan 2020
Try something like this:
v = -1:0.1:1.2; % Create Data
[X,Y] = ndgrid(v); % Create Data
Z = exp(-(X.^2-Y.^2)); % Create Data
[zmax,idx] = max(Z,[],2); % Find Maximum (Choose Dimension)
figure
surf(X, Y, Z)
hold on
plot3(v, ones(size(v))*max(v(:)), zmax, '-r', 'LineWidth',2.5)
hold off
grid on
producing (for these values):
1Highligh a curve from a 3D plot - 2020 01 30.png

Plus de réponses (0)

Catégories

En savoir plus sur Two y-axis dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by