のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

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

octave bsxfun

> help bsxfun 'bsxfun' is a built-in function from the file libinterp/corefcn/bsxfun.cc -- bsxfun (F, A, B) The binary singleton expansion function performs broadcasting, that is, it applies a binary function F element-by-element to two ar…

static constの配置場所

stackoverflow.comd.hatena.ne.jpセクションとか.textとか定数が何故スタック領域に配置されるのか - 109: 開発ツール - Forum - かふぇルネ - Renesas Rulz - Japan より、引用 Renesasの場合 ① const static char[] = "A" : C-1セクション ② static co…

ML UnitTests EX4

input_layer_size=il hidden_layer_size =hl num_labels=nl nn_params=nnhttps://www.coursera.org/learn/machine-learning/discussions/weeks/5/threads/uPd5FJqnEeWWpRIGHRsuuw

SourceTree 外部マージツールが起動しない

ターミナルを開き以下のコマンドを実行してみた。 (SourceTreeのメニュー>操作>ターミナルで開く).gitglobalの確認 $ git config --global --list core.autocrlf=true core.excludesfile=C:\Users\user01\Documents\gitignore_global.txt user.name=user0…

Octave max

>> help max 'max' is a built-in function from the file libinterp/corefcn/max.cc -- max (X) -- max (X, [], DIM) -- [W, IW] = max (X) -- max (X, Y) Find maximum values in the array X. For a vector argument, return the maximum value. For a ma…

Octave fmincg options

>> help optimset 'optimset' is a function from the file C:\Octave\Octave-4.2.0\share\octave\4.2.0\m\optimization\optimset.m -- optimset () -- OPTIONS = optimset () -- OPTIONS = optimset (PAR, VAL, ...) -- OPTIONS = optimset (OLD, PAR, VAL,…

Octave Plot

>> figure; % 図を表示するためのウィンドウを開く >> hold on; % 続けて表示するようにする。 >> plot(1,1,'bo', 'MarkerSize', 10); >> plot(2,2,'rx', 'MarkerSize', 10); >> plot(3,3,'c+', 'MarkerSize', 10); >> hold off; %解除 Octaveの精義―フリー…