Scilab Plot 2d Function

[Solved] Scilab Plot 2d Function | Matlab - Code Explorer | yomemimo.com
Question : scilab plot 2d function

Answered by : doriath-arthus

x = [-5 : 0.1 : 5];
function y = f(x)	y = 3 * x^2
endfunction
//to trace your 2D function use plot2d() like this :
plot2d(x, f(y))

Source : | Last Update : Sat, 26 Jun 21

Answers related to scilab plot 2d function

Code Explorer Popular Question For Matlab