"Mesh" function in HFSS
I have one question that i am wondering how "Mesh" function work in matlab. Could you give me some references and documentations about this.
Thank you so much!
Mesh function in MATLAB or HFSS !?
In MATLAB you can easily use its help to apply any function like "mesh".
for example, this pseudo code in MATLAB is useful to use mesh function,
[X,Y] = meshgrid(-4:.5:2.5, -3:.5:2);
%construct X and Y to depict the function.
Z = sqrt(X.^2 + Y.^2);
%construct the main function
mesh(X,Y,Z)
%depict the Z function over [X, Y]
good luck.
In HFSS the mesh is the basis for the simulation. It is discussed in the help sections of the software. I note your title says mesh in HFSS and the body of your question refers to Matlab.
You could also run down a book on the finite element method of simulating electromagnetic problems.
Maybe i 'd written wrong in my post before. Actually i would like to ask about "Mesh" in HFSS.
Thank you!