How to define a symbolic function for this equation?

Where, p_{i,j} are data points.
Where P_ij are data points.

4 Commenti

Is P_ij numeric or symbolic? What about m and n?
moaad
moaad il 2 Gen 2023
Modificato: moaad il 2 Gen 2023
m and n can be any numbers greater than 2, suppose for this case, m=n=3. Actually P_ij are points in 3D, like p_00= {0,0,0}, p_01={1,1,1} ,.... But problem is that how can i symbolically write p_ij?
m and n are not very clear in the function though. Is p_ij a 2D or 3D vector?
Dyuman Joshi
Dyuman Joshi il 2 Gen 2023
Modificato: Dyuman Joshi il 2 Gen 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.

Accedi per commentare.

Risposte (1)

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
S(x, y, p_ij) = 
Ans = subs(S, [x, y, p_ij], [3,3,{1}])
Ans(x, y, p_ij) = 
9

Richiesto:

il 2 Gen 2023

Modificato:

il 2 Gen 2023

Community Treasure Hunt

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

Start Hunting!

Translated by