Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
146 changes: 146 additions & 0 deletions SRIP/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
<!DOCTYPE HTML>
<html>
<head>
<script>

window.onload = function () {
var chart = new CanvasJS.Chart("chartContainer", {
animationEnabled: true,

title: {
text: "Random Number Generation"
},

axisX: {
title: "X-Axis"
},

axisY: {
title: "Y-Axis",
interval:0.5
},

legend: {
cursor: "pointer",
itemclick: toggleDataSeries
},

data: [{
type: "scatter",
name: "Class 1",
showInLegend: true,
toolTipContent: "<span style=\"color:#4F81BC \">{name}</span><br>Active Users: {x}<br>CPU Utilization: {y}%",
dataPoints: [
{ x: 3, y: 2 },
{ x: 4, y: 3 }
]
},
{
type: "scatter",
name: "Class 2",
showInLegend: true,
markerType: "triangle",
toolTipContent: "<span style=\"color:#C0504E \">{name}</span><br>Active Users: {x}<br>CPU Utilization: {y}%",
dataPoints: [
{ x: -4, y: -3 },
{ x: -3, y: -2 }
]
},
{
type: "scatter",
name: "Class 3",
showInLegend: true,
markerType: "square",
toolTipContent: "<span style=\"color:#C0504E \">{name}</span><br>Active Users: {x}<br>CPU Utilization: {y}%",
dataPoints: [
{ x: 2, y: -4 },
{ x: 3, y: -2 }
]
},
{
type: "scatter",
name: "Class 4",
showInLegend: true,
markerType: "cross",
toolTipContent: "<span style=\"color:#C0504E \">{name}</span><br>Active Users: {x}<br>CPU Utilization: {y}%",
dataPoints: [
{ x: -7, y: 3 },
{ x: -4, y: 6 }
]
},
{
type: "scatter",
name: "test",
showInLegend: true,
markerType: "triangle",
toolTipContent: "<span style=\"color:#C0504E \">{name}</span><br>Active Users: {x}<br>CPU Utilization: {y}%",
dataPoints: [
{ x: 1, y:1 },
{ x: 2, y:2 }
]
}]
});
chart.render();

function toggleDataSeries(e) {
if (typeof (e.dataSeries.visible) === "undefined" || e.dataSeries.visible) {
e.dataSeries.visible = false;
} else {
e.dataSeries.visible = true;
}
e.chart.render();
}

}

function disable() {
document.getElementById("mySelect").disabled=true;
}
function enable() {
document.getElementById("mySelect").disabled=false;
}

function disableElement() {
document.getElementById("btn01").disabled = true;
}

</script>
</head>

<body>

<div id="chartContainer" style="height: 370px; width: 100%;">

<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>

</div>

Load Custom Datasets
<form>
<select id="mySelect">
<option>T1</option>
<option>T2</option>
<option>T3</option>
<option>T4</option>
</select>
<input type="button" onclick="enable()" value="Load">
</form><br>

Mark Points
<form>
<input type="button" id="btn01" value="Test Points">
<button onclick="disableElement()">Clear</button>
</form><br>

Classification DDAG
<form>
<input type="button" id="btn01" value="Start">
<input type="button" id="btn01" value="Next">
<br>
Current Classifier:
<br>
Current Class:
</form>

</body>
</html>
16 changes: 8 additions & 8 deletions src/lab/Experiments.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<span class="icon-bar" style="background-color: #77BB41"></span>
<span class="icon-bar" style="background-color: #77BB41"></span>
</button>
<a class="navbar-brand main-logo-a" href="http://vlabs.ac.in/index.html"><img src="../../images/logo-new.png" class="img-responsive main-logo" /></a>
<a class="navbar-brand main-logo-a" href="http://vlabs.ac.in/index.html"><img src="http://vlab.co.in/" class="img-responsive main-logo" /></a>
</div>

<!-- Collect the nav links, forms, and other content for toggling -->
Expand All @@ -57,15 +57,15 @@

<ul class="nav navbar-nav navbar-right menu-ul">
<li class="page-scroll menu-li " >
<a href="http://vlabs.ac.in/index.html" class="menu-a" >HOME</a>
<a <!--href="http://vlabs.ac.in/index.html" class="menu-a"-- >HOME</a>
</li>
<li class="page-scroll menu-li menu-li-active">
<a href="http://vlabs.ac.in/labs.html" class="menu-a menu-a-active" >ALL LABS</a>
<a <!--href="http://vlabs.ac.in/labs.html" class="menu-a menu-a-active"-- >ALL LABS</a>
</li>
<li class="page-scroll menu-li " >
<a href="http://vlabs.ac.in/index.html#partner" class="menu-a" >PARTNERS</a>
<a <!--href="http://vlabs.ac.in/index.html#partner" class="menu-a"-- >PARTNERS</a>
</li><li class="page-scroll menu-li " >
<a href="http://vlabs.ac.in/index.html#contact" class="menu-a" >CONTACT</a>
<a <!--href="http://vlabs.ac.in/index.html#contact" class="menu-a"-- >CONTACT</a>
</li>
</ul>

Expand All @@ -88,7 +88,7 @@

<!-- =================================================================================================================================== -->
<div class="container-fluid" style="margin-left: 35px; margin-right: 35px;">
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a href="http://vlabs.ac.in/computer-science-and-engineering-labs.html" class="sidebar-a" >Computer Science & Engineering</a><br/></h2>
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a href="http://vlab.co.in/broad-area-computer-science-and-engineering" class="sidebar-a" >Computer Science & Engineering</a><br/></h2>

<div class="row">
<div class="col-md-2 sidebar-col-2">
Expand Down Expand Up @@ -174,7 +174,7 @@ <h2 class="text-h2-lightblue-small" style="font-weight: bold;margin-top: 0px;">U
<div><a href="#" class="text-a-lightgreen" style="text-decoration: underline;" > REGISTRATION</a></div>
<div><a href="#" class="text-a-lightgreen" style="text-decoration: underline;" > LOGIN</a></div> -->
<!-- <div><a href="#" class="text-a-lightgreen" style="text-decoration: underline;" > Outreach Portal</a></div> -->
<a href="http://community.virtual-labs.ac.in/w/index.php/Main_Page" class="text-a-lightgreen" style="text-decoration: underline;" >Community</a>
<a <!--href="http://community.virtual-labs.ac.in/w/index.php/Main_Page" class="text-a-lightgreen" style="text-decoration: underline;"-- >Community</a>
<a href="http://www.sakshat.ac.in/" class="text-a-lightgreen" style="text-decoration: underline;" > Sakshat Portal</a>
<!--<a href="http://118.102.191.38/feedback/Registration.html" class="text-a-lightgreen" style="text-decoration: underline;" > Nodal Center</a>-->
<a href="http://outreach.vlabs.ac.in/" class="text-a-lightgreen" style="text-decoration: underline;" > Outreach Portal</a>
Expand All @@ -186,7 +186,7 @@ <h2 class="text-h2-lightblue-small" style="font-weight: bold;margin-top: 0px;">U
<div><a href="#" class="text-a-lightgreen" style="text-decoration: underline;" > FEEDBACK</a></div>
<div><a href="#" class="text-a-lightgreen" style="text-decoration: underline;" > SAKSHAT PORTAL</a></div> -->
<h2 class="text-h2-lightblue-small" style="font-weight: bold;margin-top: 0px;"> Contact us</h2>
<a href="http://feedback.vlabs.ac.in/" class="text-a-lightgreen" style="text-decoration: underline;" > Feedback</a>
<a <!--href="http://feedback.vlabs.ac.in/" class="text-a-lightgreen" style="text-decoration: underline;"-- > Feedback</a>
<a class="text-a-lightgreen"style="text-decoration: underline;" href="mailto:support@vlabs.ac.in">support@vlabs.ac.in</a>
</div>

Expand Down
16 changes: 8 additions & 8 deletions src/lab/exp4/Experiment.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<span class="icon-bar" style="background-color: #77BB41"></span>
<span class="icon-bar" style="background-color: #77BB41"></span>
</button>
<a class="navbar-brand main-logo-a" href="http://vlabs.ac.in/index.html"><img src="../../../images/logo-new.png" class="img-responsive main-logo" /></a>
<a class="navbar-brand main-logo-a" href="http://vlabs.ac.in/index.html"><img src="http://vlab.co.in/" class="img-responsive main-logo" /></a>
</div>

<!-- Collect the nav links, forms, and other content for toggling -->
Expand All @@ -57,15 +57,15 @@

<ul class="nav navbar-nav navbar-right menu-ul">
<li class="page-scroll menu-li " >
<a href="http://vlabs.ac.in/index.html" class="menu-a" >HOME</a>
<a class="menu-a" >HOME</a>
</li>
<li class="page-scroll menu-li menu-li-active">
<a href="http://vlabs.ac.in/labs.html" class="menu-a menu-a-active" >ALL LABS</a>
<a class="menu-a menu-a-active" >ALL LABS</a>
</li>
<li class="page-scroll menu-li " >
<a href="http://vlabs.ac.in/index.html#partner" class="menu-a" >PARTNERS</a>
<a class="menu-a" >PARTNERS</a>
</li><li class="page-scroll menu-li " >
<a href="http://vlabs.ac.in/index.html#contact" class="menu-a" >CONTACT</a>
<a class="menu-a" >CONTACT</a>
</li>
</ul>

Expand All @@ -88,7 +88,7 @@

<!-- =================================================================================================================================== -->
<div class="container-fluid" style="margin-left: 35px; margin-right: 35px;">
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a href="http://vlabs.ac.in/computer-science-and-engineering-labs.html" class="sidebar-a" >Computer Science & Engineering</a> &rarr;<a href="../Introduction.html" class="sidebar-a" >Pattern Recognition Lab
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a href="http://vlab.co.in/broad-area-computer-science-and-engineering" class="sidebar-a" >Computer Science & Engineering</a> &rarr;<a href="../Introduction.html" class="sidebar-a" >Pattern Recognition Lab
</a>&nbsp&rarr;<a href="../Experiments.html" class="sidebar-a" >List Of Experiments</a><br/></h2>

<div class="row">
Expand Down Expand Up @@ -138,7 +138,7 @@ <h2 class="text-h2-lightblue-small" style="font-weight: bold;margin-top: 0px;">U
<div><a href="#" class="text-a-lightgreen" style="text-decoration: underline;" > REGISTRATION</a></div>
<div><a href="#" class="text-a-lightgreen" style="text-decoration: underline;" > LOGIN</a></div> -->
<!-- <div><a href="#" class="text-a-lightgreen" style="text-decoration: underline;" > Outreach Portal</a></div> -->
<a href="http://community.virtual-labs.ac.in/w/index.php/Main_Page" class="text-a-lightgreen" style="text-decoration: underline;" >Community</a>
<a <!--href="http://community.virtual-labs.ac.in/w/index.php/Main_Page" class="text-a-lightgreen" style="text-decoration: underline;" -->Community</a>
<a href="http://www.sakshat.ac.in/" class="text-a-lightgreen" style="text-decoration: underline;" > Sakshat Portal</a>
<!--<a href="http://118.102.191.38/feedback/Registration.html" class="text-a-lightgreen" style="text-decoration: underline;" > Nodal Center</a>-->
<a href="http://outreach.vlabs.ac.in/" class="text-a-lightgreen" style="text-decoration: underline;" > Outreach Portal</a>
Expand All @@ -150,7 +150,7 @@ <h2 class="text-h2-lightblue-small" style="font-weight: bold;margin-top: 0px;">U
<div><a href="#" class="text-a-lightgreen" style="text-decoration: underline;" > FEEDBACK</a></div>
<div><a href="#" class="text-a-lightgreen" style="text-decoration: underline;" > SAKSHAT PORTAL</a></div> -->
<h2 class="text-h2-lightblue-small" style="font-weight: bold;margin-top: 0px;"> Contact us</h2>
<a href="http://feedback.vlabs.ac.in/" class="text-a-lightgreen" style="text-decoration: underline;" > Feedback</a>
<a class="text-a-lightgreen" style="text-decoration: underline;" > Feedback</a>
<a class="text-a-lightgreen"style="text-decoration: underline;" href="mailto:support@vlabs.ac.in">support@vlabs.ac.in</a>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/lab/exp4/Feedback.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@

<!-- =================================================================================================================================== -->
<div class="container-fluid" style="margin-left: 35px; margin-right: 35px;">
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a href="http://vlabs.ac.in/computer-science-and-engineering-labs.html" class="sidebar-a" >Computer Science & Engineering</a> &rarr;<a href="../Introduction.html" class="sidebar-a" >Pattern Recognition Lab
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a href="http://vlab.co.in/broad-area-computer-science-and-engineering" class="sidebar-a" >Computer Science & Engineering</a> &rarr;<a href="../Introduction.html" class="sidebar-a" >Pattern Recognition Lab
</a>&nbsp&rarr;<a href="../Experiments.html" class="sidebar-a" >List Of Experiments</a><br/></h2>

<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion src/lab/exp4/Introduction.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@

<!-- =================================================================================================================================== -->
<div class="container-fluid" style="margin-left: 35px; margin-right: 35px;">
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a href="http://vlabs.ac.in/computer-science-and-engineering-labs.html" class="sidebar-a" >Computer Science & Engineering</a> &rarr;<a href="../Introduction.html" class="sidebar-a" >Pattern Recognition Lab
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a http://vlab.co.in/broad-area-computer-science-and-engineering" class="sidebar-a" >Computer Science & Engineering</a> &rarr;<a href="../Introduction.html" class="sidebar-a" >Pattern Recognition Lab
</a>&nbsp&rarr;<a href="../Experiments.html" class="sidebar-a" >List Of Experiments</a><br/></h2>

<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion src/lab/exp4/Objective.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@

<!-- =================================================================================================================================== -->
<div class="container-fluid" style="margin-left: 35px; margin-right: 35px;">
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a href="http://vlabs.ac.in/computer-science-and-engineering-labs.html" class="sidebar-a" >Computer Science & Engineering</a> &rarr;<a href="../Introduction.html" class="sidebar-a" >Pattern Recognition Lab
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a http://vlab.co.in/broad-area-computer-science-and-engineering" class="sidebar-a" >Computer Science & Engineering</a> &rarr;<a href="../Introduction.html" class="sidebar-a" >Pattern Recognition Lab
</a>&nbsp&rarr;<a href="../Experiments.html" class="sidebar-a" >List Of Experiments</a><br/></h2>

<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion src/lab/exp4/Procedure.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@

<!-- =================================================================================================================================== -->
<div class="container-fluid" style="margin-left: 35px; margin-right: 35px;">
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a href="http://vlabs.ac.in/computer-science-and-engineering-labs.html" class="sidebar-a" >Computer Science & Engineering</a> &rarr;<a href="../Introduction.html" class="sidebar-a" >Pattern Recognition Lab
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a href="http://vlab.co.in/broad-area-computer-science-and-engineering" class="sidebar-a" >Computer Science & Engineering</a> &rarr;<a href="../Introduction.html" class="sidebar-a" >Pattern Recognition Lab
</a>&nbsp&rarr;<a href="../Experiments.html" class="sidebar-a" >List Of Experiments</a><br/></h2>

<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion src/lab/exp4/Quizzes.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@

<!-- =================================================================================================================================== -->
<div class="container-fluid" style="margin-left: 35px; margin-right: 35px;">
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a href="http://vlabs.ac.in/computer-science-and-engineering-labs.html" class="sidebar-a" >Computer Science & Engineering</a> &rarr;<a href="../Introduction.html" class="sidebar-a" >Pattern Recognition Lab
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a href="http://vlab.co.in/broad-area-computer-science-and-engineering" class="sidebar-a" >Computer Science & Engineering</a> &rarr;<a href="../Introduction.html" class="sidebar-a" >Pattern Recognition Lab
</a>&nbsp&rarr;<a href="../Experiments.html" class="sidebar-a" >List Of Experiments</a><br/></h2>

<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion src/lab/exp4/Theory.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@

<!-- =================================================================================================================================== -->
<div class="container-fluid" style="margin-left: 35px; margin-right: 35px;">
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a href="http://vlabs.ac.in/computer-science-and-engineering-labs.html" class="sidebar-a" >Computer Science & Engineering</a> &rarr;<a href="../Introduction.html" class="sidebar-a" >Pattern Recognition Lab
<h2 class="text-h2-lightblue" style=" margin-bottom: 20px; margin-top: 10px; "><a href="http://vlab.co.in/broad-area-computer-science-and-engineering" class="sidebar-a" >Computer Science & Engineering</a> &rarr;<a href="../Introduction.html" class="sidebar-a" >Pattern Recognition Lab
</a>&nbsp&rarr;<a href="../Experiments.html" class="sidebar-a" >List Of Experiments</a><br/></h2>

<div class="row">
Expand Down