Skip to content

Commit

Permalink
Merge pull request #92 from ICB-DCM/fixes_dw
Browse files Browse the repository at this point in the history
Change ' to transpose to fix 'conjugate' method not found error.
  • Loading branch information
dweindl authored May 12, 2017
2 parents 3d0d19b + 5e1343c commit 0fafe7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions @amimodel/augmento2.m
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0fafe7e

Please sign in to comment.