Plot data with slider: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 15: Line 15:
     this.dataY = [];
     this.dataY = [];
     for (i = 0; i < len; i++) {
     for (i = 0; i < len; i++) {
         this.dataY[i] = plotData[1][i] * Math.sin(mu.Value());
         this.dataY[i] = plotData[1][i] * Math.asin(mu.Value());
     }
     }
};
};
Line 32: Line 32:
                 }
                 }
                
                
                 return Math.sqrt(s); }],
                 return Math.sqrt(s) / 5; }],
             {trace: true, name:'||u||_2'});
             {trace: true, name:'||u||_2'});



Revision as of 08:52, 12 April 2014

The JavaScript code