Scilab分段函数写法

Scilab Piecewise Function

A 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:

 piecewise function to be used in Scilab

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: 

 Plot result of the piecewise function in Scilab


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值