필터 지우기
필터 지우기

Antenna surface current distribution

조회 수: 8 (최근 30일)
irfan Ullah
irfan Ullah 2020년 4월 8일
댓글: darova 2020년 4월 12일
I had an antenna design in CST microwave studio. I want to draw the surface current distribution of the antenna in Matlab. I export the. txt file of the surface current distribution from CST, please see the attached files. Is it possible to draw the surface current distribution of the antenna using the Matlab environment?
  댓글 수: 5
irfan Ullah
irfan Ullah 2020년 4월 12일
Thank you for your help. I have tried the code you suggested. The plot does not look right. I was expecting that the outcome should be the same to the examples provided on the Matlab website:https://uk.mathworks.com/help/antenna/ref/current.html
darova
darova 2020년 4월 12일
You can try scatter3
ind = (v1-min(v1))/(max(v1)-min(v1))*254+1;
cmap = jet(255);
cmap = cmap(round(ind),:);
scatter3(x,y,z,10,cmap,'fill')
colorbar
It's the best you can do with pointcloud. See also isosurface
You need more information/data to create surface/body

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by