Superimposed multiple different Surface on Same plot ?

2 Ansichten (letzte 30 Tage)
Magni Wembé Yves
Magni Wembé Yves am 31 Aug. 2017
Kommentiert: José-Luis am 31 Aug. 2017
please Could somebody help me? i wanna superimpose surface like this on the same plot ...at the Position Z=[-1 0 1] it is a housing with : ground floor, Firt floor and Second floor
  4 Kommentare
KSSV
KSSV am 31 Aug. 2017
Attach your code....
José-Luis
José-Luis am 31 Aug. 2017
Are you trying to produce blueprints?
I would seriously consider not using Matlab for that. This is what CAD is for.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

José-Luis
José-Luis am 31 Aug. 2017
[X,Y,Z] = peaks(25);
floor_space = 10;
%First floor
surf(X,Y,Z); hold on
%Second floor
surf(X,Y,Z + floor_space);
%Third floor
surf(X,Y,Z + 2.*floor_space); hold on
  2 Kommentare
Magni Wembé Yves
Magni Wembé Yves am 31 Aug. 2017
Thanks José-Luis please could You do it with diffrent Peaks so that on any Floor we see different figure ??
José-Luis
José-Luis am 31 Aug. 2017
Peaks is just a placeholder, used to generate synthetic data. Why don't you use your own data and use an offset for the z values, which is what my answer suggests.

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by