This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%record and play back as fast as possible | |
%with digital filtering | |
clear all; | |
clf; | |
delete(daqfind); | |
%sample rate and number of inputs per tirgger | |
numinput = 2000; | |
samrate = 8000; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%Simple analog output | |
%define the output | |
adaptor = 'winsound'; | |
id = 0; | |
chan = 1; | |
% Analog output object Configuration. | |
% Create an analog input object with one channel. | |
ao = analogoutput(adaptor, id); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%Simple analog diaplay | |
figure(2); clf; | |
clear all | |
%trash any existing analog i/o objects | |
delete(daqfind); | |
%define the input | |
adaptor = 'nidaq'; | |
adaptorData = daqhwinfo(adaptor); | |
%get the adaptor id, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%Simple analog diaplay | |
figure(2) | |
%define the input | |
adaptor = 'winsound'; | |
id = 0; | |
chan = 1; | |
% Analog input object Configuration. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
process; ikili kodun bellekte çalıştırılabilir hale gelmiş haline denir. | |
scheduling; zaman tahsili | |
dispatch; scheduling bittiğinde başka bir processe geç | |
nice; işletim sistemine oncelikli görev belirleme | |
scheduler dispatch; kuyruga geri yolla yenisini al |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<h2> Denemeler</h2> | |
<ol> | |
<li>coffee</li> | |
<li>coffee</li> | |
<li>coffee</li> | |
<ol> | |
<li>hmmm</li> | |
<li>hmmm</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<table border=2> | |
<tr> | |
<td rowspan=2> telefon</td> | |
<td>0900 000 0000</td> | |
<td>0900 000 0000</td> | |
</tr> | |
<tr> | |
<td>0900 000 0000</td> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <ctype.h> | |
int main() | |
{ | |
char *s,*p; | |
int i,k=0; | |
s="+,- 1234"; | |
p=malloc(strlen(s)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <ctype.h> | |
char *ayikla(char *dizgi) | |
{ | |
int i,k=0; | |
char *b; | |
b=malloc(strlen(dizgi)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <ctype.h> | |
int main() | |
{ | |
char *s; | |
float a; | |
s="12.34"; | |
a=atof(s); |