From 5e1343c3155c0bac781c44d53b34734de84e7b4c Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Fri, 12 May 2017 15:14:09 +0200 Subject: [PATCH] Change ' to transpose to fix 'conjugate' method not found error. --- @amimodel/augmento2.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/@amimodel/augmento2.m b/@amimodel/augmento2.m index a11a1033aa..ac721f8c99 100644 --- a/@amimodel/augmento2.m +++ b/@amimodel/augmento2.m @@ -94,8 +94,8 @@ augmodel.sym.Jz = [this.sym.Jz,SJz]; augmodel.sym.p = this.sym.p; augmodel.sym.k = this.sym.k; - augmodel.sym.sigma_y = [this.sym.sigma_y(:)', reshape(transpose(this.fun.dsigma_ydp.sym), [1,numel(this.fun.dsigma_ydp.sym)])]; - augmodel.sym.sigma_z = [this.sym.sigma_z(:)', reshape(transpose(this.fun.dsigma_zdp.sym), [1,numel(this.fun.dsigma_zdp.sym)])]; + augmodel.sym.sigma_y = [transpose(this.sym.sigma_y(:)), reshape(transpose(this.fun.dsigma_ydp.sym), [1,numel(this.fun.dsigma_ydp.sym)])]; + augmodel.sym.sigma_z = [transpose(this.sym.sigma_z(:)), reshape(transpose(this.fun.dsigma_zdp.sym), [1,numel(this.fun.dsigma_zdp.sym)])]; modelo2 = amimodel(augmodel,[this.modelname '_o2']); modelo2.o2flag = 1;