User Portlet User Portlet

Discussions
To avoid the error message "ThermodynamicData::quant: t is not a real number", we could use `Quiet@FindRoot[...]` For a case like this: H(Temp) + b * Temp = c, we could define a function to calculate the enthalpy that only accepts numbers and...
maybe this is usefull, using polygon you could add colors to the square, that way when you rotate it the change is notorious Graphics[{Rotate[ Polygon[{{0, 0}, {1, 0}, {1, 1}, {0, 1}}, VertexColors -> {Red, Red, Blue, Blue}],...
data = {{7, 4, 3}, {6, 9, 4}, {8, 7, 7}, {6, 9, 6}}; The Do[ ] function does not produce any results that you could save, you have to use Table[] instead of Do[] , or AppendTo[] inside the Do res = Table[data[[i, 1]]*data[[i, 2]] +...
The example with the Monitor function shows that it takes more than two times, if I do what you suggest it will be more than 10 times slower not faster as you say. The question is why the iterations does not happens at the same time and if...