- p.16
$\hat{R}>1.1$ は$\hat{R}<1.1$ の間違い?
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 <errno.h> | |
#include <sys/mman.h> | |
const int SIZE = 4096; | |
int main(void) { | |
int *addr = malloc(sizeof(int)*SIZE); | |
posix_memalign(&addr, 4096, sizeof(int)*SIZE); |
This file contains 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
import 'dart:typed_data'; | |
import 'package:flutter/material.dart'; | |
import 'package:mlkit/mlkit.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { |
This file contains 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
<form action="on.html"><button type="submit" style="padding: 0.5em 1em; font-size: 18px; background-color: #4CAF50; color: #FFF; border: none;">OFF -> ON</button></form> |
This file contains 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
user www-data; | |
worker_processes 1; | |
pid /run/nginx.pid; | |
events { | |
worker_connections 10240; | |
} | |
http { | |
sendfile on; |
OB/OG の会のサーバーは復旧しました。
参加案内、参加受理チーム一覧は以下のページをご参照ください。
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
def stanfit_to_dataframe(fit, pars=None): | |
""" | |
Parameters | |
========== | |
fit : pystan.StanFit4model | |
""" | |
import pandas | |
summary = fit.summary(pars=pars) | |
columns = summary['summary_colnames'] | |
index = summary['summary_rownames'] |
This file contains 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
function wait () { | |
return new Promise((resolve, reject) => { | |
setTimeout(resolve, 1000) | |
}) | |
} | |
function foo (i) { | |
return new Promise((resolve, reject) => { | |
console.log(i) | |
resolve() |
NewerOlder