Guest User

Untitled

a guest
Oct 18th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. SeedRandom[1];
  2.  
  3. data = RandomInteger[100, {100, 3}];
  4.  
  5. x = data[[All,1]];
  6. y = data[[All,2]];
  7. z = data[[All,3]];
  8.  
  9. (* e.g. own color table *)
  10. number = Length@z;
  11. colTable = {Table[{Blend[{Blue, Green, Yellow, Red}, i]}, {i, 1/number, 1, 1/number}]};
  12. colTable = Flatten[colTable];
Add Comment
Please, Sign In to add comment