From: Sriram on
Hi,
I am having a problem with increasing the resolution of my 3-d plot. I have pasted the code below. If I try to increase the mesh density, then Av and delta also need to increase, but they can't increase in the for loop for some reason.
Please help

close all
clear all
x=[1:15];
y=[1:15];
[X,Y] = meshgrid(x,y);
for Av=1:15
for delta=1:15
ip2(Av,delta)=abs(0.6313628160e-3*Av*(6500000000.*delta*Av+9999999997.*delta+0.1300000000e11*Av+0.2000000000e11)/(0.3202734676e11*delta+0.2754525644e11*delta*Av-0.2818058868e11*Av+4372862683.*delta*Av^2-0.1831738265e11*Av^2));
end
end
iip3=10*log10(ip2/0.001);
figure;
surf(X,Y,iip3);