Changing a Matrix Format!

조회 수: 7 (최근 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) ;
  댓글 수: 1
Omar
Omar 2016년 11월 16일
Thanks man! I appreciate it.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by