Incorporate Incremental Vector into an Equation

1 Ansicht (letzte 30 Tage)
Loren Smitley
Loren Smitley am 30 Okt. 2020
Beantwortet: Peter O am 30 Okt. 2020
How would I incorporate an incremental vector into an equation for calculation at every increment of that vector?

Antworten (1)

Peter O
Peter O am 30 Okt. 2020
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)

Kategorien

Mehr zu Performance and Memory finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by