This repository has been archived on 2021-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
scientificComputing/statistics/lin_funct.m
2015-10-06 09:51:38 +02:00

4 lines
47 B
Matlab

function y = lin_funct(a, b, x)
y = a.*x + b;