Closed thinkh closed 7 years ago
Open Data Structures Tutorial
The source code is not really self-explained and hard to understand if you have less programming knowledge and/or not familiar with Caleydo.
A few examples:
var sequence = Array.from(Array(200).keys()) .map(function(x){return (x-100)/50;});
or
sequence.map(function (m) { return sequence.map(function (n) { // Gentle gradient across the whole thing... // with ripples in the middle. return m*n + Math.sin(1/(m*m+n*n)); }) }), sequence, // row_ids sequence // col_ids
What does matrix.view(parse('(0:200:5),(0:200:5)')), do?
matrix.view(parse('(0:200:5),(0:200:5)')),
Please add more comments, either as commend in the source code (prefered) or as text in the Markdown file.
replaced.
Reproducer:
Open Data Structures Tutorial
Observed behavior:
The source code is not really self-explained and hard to understand if you have less programming knowledge and/or not familiar with Caleydo.
A few examples:
or
What does
matrix.view(parse('(0:200:5),(0:200:5)')),
do?Expected behavior:
Please add more comments, either as commend in the source code (prefered) or as text in the Markdown file.