how to give value stress from excel give color in my mesh
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Nobeth Bastanta Ginting
le 22 Juin 2022
Commenté : Nobeth Bastanta Ginting
le 23 Juin 2022
0 commentaires
Réponse acceptée
KSSV
le 22 Juin 2022
You can coonsider using this package: https://in.mathworks.com/matlabcentral/fileexchange/32719-postprocessing-in-fem
9 commentaires
Plus de réponses (1)
Hiro Yoshino
le 22 Juin 2022
As you can see (click the link), you can specify the color with the fourth argument (CO) of the function:
[X,Y,Z] = peaks(25);
CO(:,:,1) = zeros(25); % red
CO(:,:,2) = ones(25).*linspace(0.5,0.6,25); % green
CO(:,:,3) = ones(25).*linspace(0,1,25); % blue
mesh(X,Y,Z,CO)
Voir également
Catégories
En savoir plus sur Stress and Strain dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!