anomoto

Results 3 comments of anomoto

I have solved the same problem using [this method](https://github.com/zhixuhao/unet/issues/132#issuecomment-510341568).

I have solved the same problem replacing "mergeXX = merge([YYY,ZZZ], mode = 'concat', concat_axis = N)" with "mergeXX= concatenate([YYY,ZZZ],axis=N)" via [this](https://github.com/zhixuhao/unet/issues/77#issuecomment-431285283)

ご返答ありがとうございます. > 1. crossprod(b) が 0 になる b の具体例を示すことはできますでしょうか? 以下に添付します. [b.zip](https://github.com/hoxo-m/densratio/files/2832550/b.zip) > 2. norm() はデフォルトでは one norm を計算するので norm(b, type = "F") とすべきように思いますがどうでしょうか? おっしゃる通りです.norm(b, type = "F") でした. よろしくお願いいたします.