怎样在MATLAB中画出n=[-20:100],x=(9/10)^n的图形?

如题所述

n=[-20:100];
x=0.9.^n;
plot(x,n,'g*')
温馨提示:答案为网友推荐,仅供参考
第1个回答  2010-11-18
n=[-20:100]
x=(9/10).^n;
plot(x,n)
相似回答
大家正在搜