Answer the question
In order to leave comments, you need to log in
The coefficients for bicubic interpolation are given by the function "x^(1/3)"?
I made an interpolator and only after that I looked at what is written on Wikipedia, and something is written there that is too abstruse for me. Some sort of 16-point analysis, continuous polynomials, bi-splines.
But the result of my function is very similar. I don't understand, what's the difference?
Answer the question
In order to leave comments, you need to log in
difference in accuracy
if you don't need it then what 's the difference
Interpolation by splines is just very simple and obvious.
I wonder what your interpolation algorithm is.
It is not clear from the picture, the code is also not needed - just describe the idea of the algorithm.
Didn't check
select
t1.id,
sum(t2.res) as sum_res
from users t1
inner join otvety t2 on t2.id_user = t1.id
inner join voprosy t3 on t3.id = t2.id_vopr
where t3.id_cat = 5
group by t1.id
order by sum_res
The information is not complete about the database schema, what relationships do you have between tables?
SELECT o.id_user FROM vopros v
INNER JOIN otvet o ON o.id_vopr = v.id
WHERE v.id_cat = "id катег."
GROUP BY v.id
ORDER BY SUM(o.res)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question