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 commentaires

Guillaume
Guillaume le 15 Nov 2016
Z=[ 0, 0, 0][ 0, 1/16, 0][ 0, 0, 0] is not valid matlab syntax. So what is your input?
Omar
Omar le 15 Nov 2016
I got Z from this command Z=subs(S,{x,y} ,{X,Y}); which both x and y are independent variables in the function S while X and Y are just linspace(0,1,N)
Jan
Jan le 15 Nov 2016
It is still not clear, what Z is. Please post some code, which reproduces it.
Omar
Omar le 15 Nov 2016
Modifié(e) : Guillaume le 15 Nov 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)

Connectez-vous pour commenter.

 Réponse acceptée

KSSV
KSSV le 16 Nov 2016

1 vote

iwant = double(Z) ;

Plus de réponses (0)

Catégories

En savoir plus sur Data Type Identification dans Centre d'aide et File Exchange

Question posée :

le 15 Nov 2016

Commenté :

le 16 Nov 2016

Community Treasure Hunt

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

Start Hunting!

Translated by