Mino
Because I have never written in C++, for me is very difficult write something right well
Mino
really well*
M.Khorram
Because I have never written in C++, for me is very difficult write something right well
For learning C++, I suggest learncpp.com But, you also need to know the hardware-specific coding as well And you need to know Matlab The conversion, might vary depends on many factors. For example, you have constant values for "dt", "SimTime" and "ka, kb, kc". Do you want to convert them as they are? Also, hvsd is a function, which you should re-think about
Mino
I want leave the constant like this, Now, I'm trying to resolve that equation with euler method. But I don't know how I can write that on C++. Because in Mathlab is very easy
Mino
and how I can set the interval time t=[0:dt:(SimTime)]; I thought with ''append'' function.
Mino
I need to create this array before to resolve that equation
M.Khorram
and how I can set the interval time t=[0:dt:(SimTime)]; I thought with ''append'' function.
That's an important issue. I usually use std::vector, but in this case, you might have no access to that on FPGA
M.Khorram
I'm not sure if either std::vector or std::array is available in FPGA
Mino
Send it to the FPGA will be the next step. Now I want out something with that code
Mino
Then If I will have other problem as compatibility or something like that I will change the code
Mino
But isn't my problem now
Mino
Do u understand my problem?
M.Khorram
Do u understand my problem?
Please send me a PM
Anonymous
Hi guys how can i calc area of some circles and then show them from up to down I writed one for for taking radiuses but i dont know to write what in calc function to show them in the end
M.Khorram
please remove this message immediately sending screenshots is banned
Anonymous
Oh ok i didnt know that
Dima
photos are not allowed
Anonymous
😑
Dima
screenshots with small code snippet are allowed, but it would be better to use pastebin
Dima
M.Khorram
sending screenshots is allowed, you silly
Hey neanderthal, Why people should read the rules as their daily chores? I read that, in the past, but now it seems you changed the rules. (which is a great progress for you neanderthals) But, you should inform people when you change something
Hadaward 'Solly'
why, yes. I wanna see your CRT monitor photoshoot so I can go blind in the middle of night. How did you know?
Prem Kumar
Can the admins take this bot away
Anonymous
why does interleaving fail? https://gist.github.com/2810c7a63ae632cdbeb21dbd9ce3acfd and https://gist.github.com/63f56dbe4e75cf345dd87a4cf65e6b55 , if INTERLEAVE is false then it plays perfectly, if true then it plays corrupted audio
Anonymous
Hello
Anonymous
I had one issue with cplus plus
M.Khorram
lol you are retarded even
Hey neanderthal, What's the problem with my answer to him?
Anonymous
/get ide
Xudoyberdi
is codeblocks really out of date or why my code gets compiled via onlinegdb but not via codeblocks
Dima
but by the way it looks its just outdated lol
Xudoyberdi
it’s good, it supports modern compilers
i see, what would you suggest? i cant afford onlinegdb 24/7
Dima
#ides
Dima
you can get CLion for free as a student, or use EAP version
Xudoyberdi
oh, silly me, thanks
Anonymous
just ask
Create a program that determines the following function, given the real number X. c plus plus
Dima
nice cat
Anonymous
nice cat
/warn offtop
Anonymous
Oops
Dima
Where can I get that whitener 😂?
it’s AI whitener, puts “if”s
Dima
lol
Anonymous
Good one
Anonymous
Hello Epribady! I'm here!!
Anonymous
Any information on c++ resources?
Raru
Who can help me with one problem in c with dynamic memory allocation with malloc
mbuf
Who can help me with one problem in c with dynamic memory allocation with malloc
Hi Raru, share your code on one of the pastebin sites and ask your questions.
olli
when do people learn that answers can only be as good as the questions.. > Who can help me Do you want to know who can, or do you want help? If it's the latter why ask who can and waste everyone's time...
olli
Who can help me with one problem in c with dynamic memory allocation with malloc
hundreds of people - I hope that's what you wanted to know
Lucky
should i learn c/c++ in 2021?
Lucky
please guide
Henry
Can i share a database management project here for clean code and efficiency feedback
Henry
C
Valentine
should i learn c/c++ in 2021?
That’s wrong question. All the languages are for targets u persuade
Valentine
If you want to program microcontrollers or do smth with VFX then you should learn C/C++ Ask yourself first what you wanna do
mbuf
should i learn c/c++ in 2021?
The law of the instrument, law of the hammer,[1] Maslow's hammer (or gavel), or golden hammer[a] is a cognitive bias that involves an over-reliance on a familiar tool. As Abraham Maslow said in 1966, "I suppose it is tempting, if the only tool you have is a hammer, to treat everything as if it were a nail."[2]
Anonymous
But tbh C/C++ and some low level security material made me grasp most other frameworks too. If one has the time, should try
mbuf
I feel attacked
Don't shoot the messenger. I got for wikipedia 🤷‍♂
mbuf
Got it from wikipedia*
Dima
Got it from wikipedia*
you can edit messages in telegram lol
Anonymous
Lels!
mbuf
you can edit messages in telegram lol
Thanks, never knew. Gen y here 😹
Vitalii
why when I use: double x, y; y = pow(1-x, 1.0/3); printf("%lf", y); It turns: -1.IND00 It works right when (1-x) is positive, but if negative - it doesn't work. Cannot understand why...I google it, follow some steps, but it didn't work :/