How to tabulate the values?
3 次查看(过去 30 天)
显示 更早的评论
I=[-40 -30 -20 -10 0 10 20 30 40];
w=[0.035 0.5 1 1.25 1.5];
h=1.57;
I_len=length(I);
w_len=length(w);
for b=1:w_len
d=w(b);
for c = 1:I_len
a = I(c);
T=215.3*a^2*d^-1.5*h^-1;
end
end
This is my code.
how do I tabulate the results of a,d,h,T and plot the graph for the same?
0 个评论
采纳的回答
KSSV
2019-6-18
I=[-40 -30 -20 -10 0 10 20 30 40];
w=[0.035 0.5 1 1.25 1.5];
h=1.57;
I_len=length(I);
w_len=length(w);
T = zeros(w_len,I_len) ;
for b=1:w_len
d=w(b);
for c = 1:I_len
a = I(c);
T(b,c)=215.3*a^2*d^-1.5*h^-1;
end
end
[X,Y] = meshgrid(I,w) ;
surf(X,Y,T)
4 个评论
更多回答(1 个)
Shubham Sangle
2019-6-18
Your question is not clear.
1:Graph between what parameters you want to plot?
2:In your For loop you are assigning every element of array to variable d and b. You are neither using them anywhere nor storing them. what you want to do with those variable?
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!