2018-02-01から1ヶ月間の記事一覧

coffee scriptとvueを使ってelectronのappをつくりたい

js

ファイル構成はこんな感じです。 my_coffee_electron ├── launch │ ├── main.js │ └── package.json ├── package.json ├── src │ ├── coffee │ │ └── app.coffee │ ├── pug │ │ └── index.pug │ └── vue │ ├── my_component.coffee │ └── my_component.vue └…

electronでvue.jsのエラー

もしvue js で You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build と言われてwebpack使っていないという時は node…

Fortran 千本ノック

1本目 Int の配列をつくって1,2,3を入れる! integer,dimension(3)::arr = (/1,2,3/) 2本目 Int の10個の配列をつくって2から5まで1あとは0に! integer,dimension(10)::arr arr = 0 arr(2:5) = 1 3本目 Int の3x3の配列をつくって真ん中は1あとは0に! inte…

Lapackをコンパイルしてみる

Lapackのコードを読んでみたいと思います。 まずはgithub Lapackからダウンロードします。 LapackのfortranのコードはSRCフォルダーに入っているのでそれをコンパイルしてみましょう。 SRCフォルダーをどこかにコピーします。 そのときmake.inc.exampleもコ…