Changing a Matrix Format!

4 次查看(过去 30 天)
Omar
Omar 2016-11-15
评论: Omar 2016-11-16
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 个评论
Jan
Jan 2016-11-15
It is still not clear, what Z is. Please post some code, which reproduces it.
Omar
Omar 2016-11-15
编辑:Guillaume 2016-11-15
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)

请先登录,再进行评论。

采纳的回答

KSSV
KSSV 2016-11-16
iwant = double(Z) ;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by