Group Abstract Group Abstract

Message Boards Message Boards

0
|
6.8K Views
|
7 Replies
|
0 Total Likes
View groups...
Share
Share this post:
GROUPS:

Min and Max file .xls

Posted 11 years ago
7 Replies

Thanks ! Works well but without "First@" !

Things are much simpler! For the BarLegend you do not even need Min and Max, try:

txtData = { - your imported textdata - };
data = ToExpression[First@txtData];
graph3D = 
 ListPlot3D[data, ColorFunction -> "Rainbow", PlotLabel -> "3D", 
  PlotLegends -> Automatic]

Henrik

POSTED BY: Henrik Schachner
POSTED BY: Hans Michel

... well, as one can see your imported data are all strings! Before any calculations can be done they have to be converted (using ToExpression):

txtData = { - your imported data - };
data = ToExpression[txtData];
MinMax[data]

Regards Henrik

POSTED BY: Henrik Schachner

same thing :/

Posted 11 years ago

Min[Flatten[data]]

POSTED BY: Imran Khan
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard