normalise data and draw a graph [closed] - excel

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
i have a data as:
13880.23
6056.203
9311.61
7866.84
2206.36
1831.2
11293.25
5762.053
7996.76
14815.93
11838.63
17314.97
17998.97
800.07
2598.04
8223.87
9669.02
7596.847
233.47
82.2
-24.42
-76.52
-161.84
949.8
-276.28
-377.83
-325.57
these are the energies of files 1 to 27 in an order. i have to draw a graph in excel sheet but since the energy varies from 13880 to -325, graph will be either too large or will not show values properly. Can a method be possible to bring these values in a particular range and then plot a graph? how can i do this?

Perform some function that will normalize the values, like logarithm or square root (where's possible - non-negative numbers only)

Related

Determining the maximum distance of two points in a list [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I have a list of points (x/y each in one column) and need to determine the maximum distance of any combination of pairs of points.
I'm only interested in the distance not the pair of points itself.
Right now I use a rough upper boundary estimation by calculating the length of the vector
(max(x)-min(x), max(y)-min(y))
You could try using CTRL+SHIFT+ENTER:
=MAX((x-TRANSPOSE(x))^2+(y-TRANSPOSE(y))^2)^0.5
Also see: http://newtonexcelbach.wordpress.com/2010/11/27/maximum-distance-between-two-points/

What does ''arbitrary shape'' mean? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I have started some work on SVG graphics and i constantly come across the word ''arbitrary shapes''.
What exactly is an arbitrary shape?
An arbitrary shape is just that.. An arbitrary shape.
The word arbitrary in this context means any as in: not a specified, or specific, kind of shape.
This is not really a programming question though.. But rather an English language question.

How to format these numbers? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Take the following examples of current numbers, and how I'd like them formatted:
1 001
65 065
651 651
651001 651.001
651001001 651.001.001
How can I achieve this? It needs to be a format not a formula (this will actually be used in an MS Access project in an SQL query, which accepts the same format).
I've tried using ###"."###"."000, but then it displays extra dots on the first few examples:
..001
..065
..651
.651.001
651.001.001
You can try entering this as a custom format:
[>999999]000"."000"."000;[>999]000"."000;000

Excel - Calculate the maximum difference between data [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Good evening !
I am wondering if Excel provides a built-in function that can calculate the maximum of the difference of a list of data.
For example, we have 1, 2, 3, 2, 1. The maximum difference is 2 (3 - 1).
I know how to make this function with a formula, but if Excel provides something to do that directly, that would be interesting.
Thanks !!
Use this:
Max(data_scope) - Min(data_scope)

What does determinant equals to one mean in the transformation matrix? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
When the determinant of transformation matrix is 1, what does it mean? Transformation can be orthogonal or perspective.
The determinant gives the scaling factor and the orientation induced by the mapping.
It is an orthogonal projection because it does not change the scale of things, no matter how close or far away.

Resources