Incorporate Incremental Vector into an Equation

5 ビュー (過去 30 日間)
Loren Smitley
Loren Smitley 2020 年 10 月 30 日
回答済み: Peter O 2020 年 10 月 30 日
How would I incorporate an incremental vector into an equation for calculation at every increment of that vector?

回答 (1 件)

Peter O
Peter O 2020 年 10 月 30 日
Use the elementwise operators (preceed divide/multiply with a dot).
https://www.mathworks.com/help/matlab/matlab_prog/array-vs-matrix-operations.html
For instance:
x = 1:100; % Array of 1 to 100
y = sin(x).*cos(2*x)./tan(x).^2; % Applies the functions along the elements individually.
Addition and subtraction don't need the periods, but you'll have to ensure that the vectors you're combining have the same size. If you're using a scalar in an operation, MATLAB will automatically broadcast it across the array (see the 2 in the cosine term).
Any functions you call and pass the vector will need to be able to operate on a vector (most built-ins will), or you can use arrayfun() to wrap the function and apply it to each value indivudally. (Or use a for loop). The syntax is:
z = arrayfun(@(x) my_scalar_fun(x), y)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by