How to define a symbolic function for this equation?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
![Where, p_{i,j} are data points.](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1249012/image.png)
Where P_ij are data points.
4 Kommentare
Dyuman Joshi
am 2 Jan. 2023
Bearbeitet: Dyuman Joshi
am 2 Jan. 2023
How will you multiply x^i*y^j and P_ij? The first term is numeric or symbolic, and the latter term is a cell.
I don't understand what is it that you are trying to do.
I presume that P_ij is a 2D cell array with each element having 3 values for 3 co-ordinates.
Antworten (1)
Kone
am 2 Jan. 2023
You can use the 'syms' function to create symbolic variables for each of the inputs and then use them to define the function. The 'subs' function can also help evaluate particular values of your variables.
something like this
syms x y p_ij;
S(x, y, p_ij) = x .* y .* p_ij
Ans = subs(S, [x, y, p_ij], [3,3,{1}])
0 Kommentare
Siehe auch
Kategorien
Mehr zu Symbolic Variables, Expressions, Functions, and Preferences 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!