To be more clear regarding the question,i need both theta and earth view factor vary in y-axis and x-axis should contain values of psi.
Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Needed to Modify plot
1 回表示 (過去 30 日間)
古いコメントを表示
Het guys, i am attaching a code(mypr2.m) where i got good plots but i need to get plot like screenshot(26).png. I need some help to do this. Thanking you in advance.
2 件のコメント
Tommy
2020 年 5 月 11 日
You could also opt for a different method of displaying the theta values, such as with color:
cmap = jet(numel(thetaV));
figure(2); hold on;
for i = 1:numel(thetaV)
plot(psi*180/pi, Fe1(i,:), 'Color', cmap(i,:));
end
xlabel('Attitude angle \psi (deg)'), ylabel('Earth view factor')
colormap(jet); cb = colorbar('Ticks', thetaV); cb.Label.String = 'Attitude angle \theta (deg)';
caxis([min(thetaV) max(thetaV)]);
回答 (0 件)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!