Changing a Matrix Format!

8 visualizaciones (últimos 30 días)
Omar
Omar el 15 de Nov. de 2016
Comentada: Omar el 16 de Nov. de 2016
Hi everyone, can somebody help me to reshape my matrix from this format Z=[ 0, 0, 0][ 0, 1/16, 0][ 0, 0, 0] to this format Z=[0,0,0;0,1/16,0;0,0,0]???
  4 comentarios
Jan
Jan el 15 de Nov. de 2016
It is still not clear, what Z is. Please post some code, which reproduces it.
Omar
Omar el 15 de Nov. de 2016
Editada: Guillaume el 15 de Nov. de 2016
okay, Here is my code
clear all;clc;close all;
syms x y
f=x*y*(1-x)*(1-y);
syms m n pi
a=4*int(int(f*sin(m*pi*x)*sin(n*pi*y),y,0,1),x,0,1); S=symsum(symsum(a*sin(m*pi*x)*sin(n*pi*y),n,1,2),m,1,2);
xx=linspace(0,1,3)';yy=xx;
[X,Y]=meshgrid(xx,yy);
Z=subs(S,{x,y} ,{X,Y});
figure
surf(X,Y,Z)

Iniciar sesión para comentar.

Respuesta aceptada

KSSV
KSSV el 16 de Nov. de 2016
iwant = double(Z) ;
  1 comentario
Omar
Omar el 16 de Nov. de 2016
Thanks man! I appreciate it.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by