用matlab 如何做y=x^(1⼀3)的图啊

2025-02-27 10:15:50
推荐回答(2个)
回答1:

x=0:0.1:100;
y=x.^(1/3);
plot(x,y)

回答2:

ezplot('x^(1/3)',[-1,1])