Scilab分段函數寫法

來源:互聯網
上載者:User
Scilab Piecewise FunctionA piecewise function is a special function that has a very particular definition along the independent values. For some values of x, the function has associated a constant or a formula, but for other values of x, it has associated another formula. Each
section is called a piece of the function.
   

In Scilab programming, there’s a number of methods to achieve this kind of functions. We could use branches (if-else code), or different cases (switch-case code), and iterations (for or while-loops) in general. In this example, we’re going to use a vectorized
approach...

 See Piecewise functions in Matlab

First, we have to understand some useful built-in functions or Scilab features for this task...

When we have a vector like this

x = -7 : 7

or

x = -7 -6 -5 -4 -3 -2 -1 0 1 2 3 4 5 6 7

we can find a range of values and a range of indices for those values.

This line

x2 = x(-4 < x & x <= -3)

is going to generate a vector of x-values that meet the condition -4 < x <= -3. Notice the particular syntax. The line uses a conditional range (extraction of values from a vector) including an ‘and’ operation (&). It gives us the x-values that meet both
conditions -4 < x and x <= 3.

For the x-vector above, the result would be just one value

x2 = -3
 

This line

find(-4 < x & x <= -3)

is going to generate a vector of indices of the values generated before.
In this particular case, the result would be 

ans = 5 

because 5 is the index of the value -3 in the given vector x.
So we need to take care of both the values and the corresponding indices in a vector.
 

Now, let’s say that we have a 4-piece function like this one:

 

We can design a Scilab function to perform like that described one. It’s called piecewise3.sci and accepts a vector as input:
 

function  y = piecewise3(x) 

// first piece - a constant
y(find(x <= -4)) = -1; 

// second piece - a straight line
x2 = x(-4 < x & x <= -3);
y(find(-4 < x & x <= -3)) = -4*x2 - 13; 

// third piece - a parabola
x3 = x(-3 < x & x <= 0);
y(find(-3 < x & x <= 0)) = x3.^2 + 6*x3 + 8; 

// fourth piece - another constant
y(find(0 < x)) = 8; 

endfunction

The general idea is to find the x-values for the different pieces of the function and then apply the corresponding formula just to those values. 

Finally, we have to find the correct indices in the output vector to place those values. We go one piece at a time. In the first and fourth pieces above, we don’t need to find the x-values, because the function is a constant. We just have to find the indices
where the constants are going to be placed.

We can call the code from our main script or from any other sci-file, like this: 

// Reset the environment
xdel(winsid()); clc; clear 

// declare the function to be called
getf('piecewise3.sci');
 

// define your independent values in a column row
x = [-7 : .1 : 7]'; 

// call your previously defined function
y = piecewise3(x); 

// plot
plot(x, y, 'ro')
xlabel('x'); ylabel('y');
title('Piecewise Function');
legend('4-piece Function');
xgrid
 

The resulting plot is this: 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.