HackerTrans
TopNewTrendsCommentsPastAskShowJobs

cricci16

no profile record

comments

cricci16
·há 4 anos·discuss
Well, if I understand your point you are refering to the fact that in many high level programming languages, the language itself is able to dected the most efficient method to do solve some linaer algebra problems, say solving linear systems. However QR factorization (or other factorizations) may be usefull when you have to solve different problems but with the same matrix, so that factorizing once and for all gives you an advantage (for example many undetermined linear problems [1]). In this case knowing something about factorizations, or what to use when, may be helpful

[1] https://en.wikipedia.org/wiki/QR_decomposition#Using_for_sol...
cricci16
·há 5 anos·discuss
genius!
cricci16
·há 5 anos·discuss
I looked at the most cited paper between those who cite the paper in object: https://care.diabetesjournals.org/content/25/2/275.short

It states: "Mean BGwas determined using area-under-the curve analysis (10)." where (10) is the paper we are discussing about.

Hence in this paper they acknowledge the result...

Don't know about the other citers. Also It would be nice to know that, but I cannot immagine how to do it automatically
cricci16
·há 5 anos·discuss
Google Scholar currently gives many more citations than 75 (424)

source: https://scholar.google.com/scholar?hl=it&as_sdt=0%2C5&q=A+Ma...
cricci16
·há 5 anos·discuss
"A more correct but less sexy slogan for Julia is that it has the best performance/expressiveness tradeoff you have ever seen."

This I almost fully agree
cricci16
·há 5 anos·discuss
In my modest experience the perfect Julia slogan would be:

"fast as C, easy as python, but NEVER the two together"

All the sentences:

"When you’re writing various algorithms, you don’t necessarily want to think about whether you’re on a GPU, or whether you’re on a distributed computer. You don’t necessarily want to think about how you’ve implemented the specific data structure. What you want to do is talk about what you want to compute."

sound nice.

Except in practice, unless someone else bothered doing that for you, you have to do it yourself.