Skip to content

Instantly share code, notes, and snippets.

View cxytomo's full-sized avatar
🎯
Focusing

cxytomo

🎯
Focusing
View GitHub Profile
@cxytomo
cxytomo / drag.html
Created November 7, 2012 14:42 — forked from fxxkscript/drag.html
HTML5 Drag and Drop
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>HTML5 Drag and Drop</title>
<style>
body {
background-color: #515151;
width: 100%;
height: 100%;
@cxytomo
cxytomo / prueba_estabilidad2.m
Created October 29, 2012 02:00
Diagrama de Nyquist
function prueba_estabilidad2(num, den)
sys = tf(num, den)
raices = roots(den)
nyquist(sys);
for i = 1:length(raices);
text(real(raices(i)), imag(raices(i)), "*");
printf("%f, %f",real(raices(i)), imag(raices(i)))
endfor
endfunction