Recent projects

exp2

Octave · an anonymous user
14 hours ago
n=0:20; x=sin(0.2*pi*n); b=[1 0 -0.25]; a=[1 -0.5]; y=filter(b,a,x); stem(n,y); xlabel('n') ylabel('y(n)'); title ('output using filter()'); grid on;

FADTS

Octave · an anonymous user
14 hours ago
clc; clear all; close all; n=0:20; x=sin(0.2*pi*n); w=-pi:0.01:pi; X=zeros(size(w)); for k=1:length(w) X(k)=sum(x.*exp(-1j*w(k)*n)); end

exp-3

Octave · an anonymous user
14 hours ago
clc; clear; close all; n = 0:20; x=sin(0.2*pi*n); w= -pi:0.01:pi; X=zeros(size(w)); for k= 1:length(w) X(k)= sum(x.*exp(-1j*w(k)*n)); end

exp2

Octave · an anonymous user
14 hours ago
n=0:20; x=sin(0.2*pi*n); b=[1 0 -0.25]; a=[1,-0.5]; y=filter(b,a,x); stem(n,y); xlabel('n'); ylabel('y(n)'); title('output using filter()'); grid on;

예제 3

C · teovxw
14 hours ago
#include <stdio.h> int main() { int a = 10, b = 20; int *pa = &a, *pb = &b, *pt; pt = pa; pa = pb; pb = pt; printf("%d, %d", *pa, *pb);

Script 1

Lua · an anonymous user
14 hours ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Escape for Cases and Skins", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to

renomer fichier

NodeJS · an anonymous user
14 hours ago
const fs = require('fs'); const path = require('path'); const readline = require('readline'); const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); // Fonction pour poser des questions dans la console

Sol

Lua · an anonymous user
14 hours ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "sols", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).

Sol

Lua · an anonymous user
14 hours ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "sols", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).

문자열에서 값 추출 후 최근 3개 유지

C++ · lattelim
14 hours ago
#include <iostream> #include <cstdlib> #include <cstring> int main() { char input[] = "CMD:ADD,X=10;CMD:ADD,X=60;CMD:ADD,X=30;CMD:ADD,X=80;CMD:ADD,X=90"; char * cmd = strtok(input, ";");

Bank

SQL · an anonymous user
14 hours ago
create table customer ( customer_id varchar(10) not null, customer_name varchar(20) not null, customer_street varchar(30), customer_city varchar(30), primary key (customer_id)); create table branch (

다양한그래프

Python · an anonymous user
14 hours ago
print('Hello world!')

Bank

SQL · an anonymous user
14 hours ago
create table customer ( customer_id varchar(10) not null, customer_name varchar(20) not null, customer_street varchar(30), customer_city varchar(30), primary key (customer_id)); create table branch ( branch_name varchar(15), branch_city varcha

1122020221Lzp 1

Octave · an anonymous user
14 hours ago
sum=0; for i=1:100 sum=sum+i; end disp(sum)

ITDSA Deliverable 2

MongoDB · an anonymous user
14 hours ago
db.createCollection("authors"); db.createCollection("books"); db.createCollection("bookauthor"); db.createCollection("members"); db.createCollection("borrowedbooks"); show collections db.authors.insertMany([ { authorID: "au01", firstName: "Adewal

최소 동전 개수

C · sim7391
14 hours ago
#include <stdio.h> #include <string.h> #include <stdlib.h> int DP[10000]; int min(int a, int b){ return (a > b) ? b : a; }

Bank

SQL · an anonymous user
14 hours ago
create table customer ( customer_id varchar(10) not null, customer_name varchar(20) not null, customer_street varchar(30), customer_city varchar(30), primary key (customer_id)); create table branch ( branch_name varchar(15), branch_city varcha

Bank

SQL · an anonymous user
14 hours ago
CREATE DATABASE Bank; USE Bank; create table customer ( customer_id varchar(10) not null, customer_name varchar(20) not null, customer_street varchar(30), customer_city varchar(30),

한줄 gcd

C · an anonymous user
14 hours ago
#include <stdio.h> #include <stdbool.h> #include <stdlib.h> int gcd(int a, int b) { if (true) { return (a > b) ? ((a % b != 0) ? ((a % (a % b) == 0 && b % (a % b) == 0) ? a % b : 1) : b) : ((a % b != 0) ? ((a % (b % a) == 0 && b % (b % a) == 0)

Q2 MongoDB

MongoDB · Matlou
14 hours ago
// AUTHOR db.author.insertMany([ { authorID: "A001", firstName: "Steve", lastName: "Shakaman" }, { authorID: "A002", firstName: "Lerato", lastName: "Jonasi" } ]); // BOOK db.book.insertMany([ { ISBN: "9780435905255", title: "Database systems"