How to repeatedly remove the connecting lines between the first an the last points on a surf plot.
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Benedikt Wessel
le 30 Août 2018
Commenté : Benedikt Wessel
le 4 Sep 2018
Its a plot with dates on the x-axis, time on the y-axis and power usage on the z-axis. So i got the mentioned issue for every day in the year and cannot fix it manually. As you can see im an absolute beginner in Matlab.... Thanks for help.
a=nan(1,208)';
date=[column1;a];
time=[column2;a];
usage=[column3*3.5*77.826;a];
datere=reshape(date,188,[]);
usagere=reshape(usage,188,[]);
timere=reshape(time,188,[]);
surf(datere,timere,usagere)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/194839/image.png)
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Annotations 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!