olli
Because pythonistas are eager to learn. Here all are already consider themselves masters
Who in here does himself consider to be "master" ?
Mihail
Also if ya'll just going to shit post like stop and go to
Mihail
#ot
olli
Guys why this group seems to be not serious? I mean there are only , probably, 10 guys(max) serious here😅
It's really sad.. But there seems to be a lot of divergence in the skill level. The last real discussion was like months ago...
qr_88
Is there place to see what are new proposals? Btw what book you would suggest to upgrade my c++ to new standards (11 and above)
olli
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/ has several papers
olli
Depending on your skill level Effective Modern C++ by Scott Mayers (targetting C++11 and C++14) is definately a good read! (imo)
qr_88
I stoped using it long ago. But I think I can . Thanks for the papers. But it seems too messy and many draft papers. So I better will stick with books
olli
apart from looking through all the papers reading trip reports of the meetings is probably a good idea to stay up to date
klimi
Zero
I want a hacker
Check my Username
Shivam
Shivam
BinaryByter
Hey! I have two classes that both have the same function. the functions are SIMILAR but not equal. should I rename the second funciton? context: I have a class for an NN and a function addHiddenLayer() ; and I have a class for an RNN with the same funciton. except that that for the HiddenLayer, the layer is recurrent
Bruce
Bruce
Can someone tell me if this is possible?
Bruce
Any experts...sorry its not language related
BinaryByter
well hes very vague about what he did
BinaryByter
but its not like getting a number is hard
olli
discuss there please
Bruce
Ok
Javier
I'm implementing a class which uses a STL container. Now I wanna use for each with the class. I've done two methods: auto begin() {return c_.begin();} And with end() as well, but I don't know if the for each will detect those methods as class iterators.
BinaryByter
why not try it out?
Javier
I'll give it a try later
olli
I'm implementing a class which uses a STL container. Now I wanna use for each with the class. I've done two methods: auto begin() {return c_.begin();} And with end() as well, but I don't know if the for each will detect those methods as class iterators.
#include <string> class Foo { public: std::string v; auto begin() { return v.begin(); } auto end() { return v.end(); } }; void fun() { Foo f; for (const auto & c : f) {} } this works perfectly fine
Javier
👌👌👌 Thanks!
Sagar
How to write a c program for matrices for which user will givd inputs of elements of the matrix to find its determinant,inverse and eigenvalues?
Anonymous
ux/ui coders?
klimi
This looks like
klimi
Some homework
Sagar
Yes it is..but I am not that expert in programing..that is why m asking
Sagar
And how? You have to press buttons on your keyboard in the right order
I meant the program should be written including the scanf function so tht user will determine the order of the matrix and its elements
Sagar
Then why do you want to program such app?
Because its an assignment and my marks depend on it 😅😅
klimi
Well
klimi
I don't want to be.... Not friendly
klimi
But .... If you can't do it you shouldn't pass
olli
Please note * Legitimate requests for help on code and programming questions are ok (no homework requests, or "pls write entire program for me" requests).
olli
What have you done so far?
klimi
😂 thank you for your help
And what can you actually do?
klimi
If not this task
Sagar
I can calculate series solutions with specified accuracies,computational integrals,addition,substraction of matrices and many other things
klimi
Then
klimi
It shouldn't be hard
klimi
Do you know how to find determinant?
klimi
And inverse and the other thing?
Sagar
Do you know how to find determinant?
I dnt knw these two things and the eigenvalue and eigenvector thing...I am very keen to learn them but I could not find any resources to do so
klimi
Firstly you can do only determinant
klimi
Then other thing
klimi
And finally add the final
Sagar
Ok..but how?
klimi
Ok..but how?
You have to get input from the user
klimi
So firstly try this
Sagar
https://en.m.wikipedia.org/wiki/Eigenvalues_and_eigenvectors
I knw the theory part..it was in my academic curricu5
Sagar
*curriculum
klimi
So you know it! Nice
Sagar
You have to get input from the user
That is the main problem
klimi
I don't have idea what it is
klimi
Just get input
Sagar
Why?
Because to add scanf function for any arbritrary ordered matrix is really tough to do
klimi
I haven't done matrices but it should be any harder than other stuff tho I programmed in Python and c++ not c
Sagar
Scanf is for input
I knw..thts wht m tellng
klimi
You will just fed the program numbers
Sagar
I meant that when I choose the order of the matrix to be fixed by the user then how will I define the array to take vaues of the elements of the matrices?
klimi
Hmmm
klimi
@Occupato
klimi
I don't know c
klimi
You will need dynamic array
Sagar
Oh..ok
Sagar
Can you suggest me a book for this purpose? I mean which could help me in writing this program?