Recent content by cs23
-
C
Are calculators and TV remotes also concepts?
Nice, i get it. It's exactly what i was looking for- cs23
- Post #10
- Forum: General Discussion
-
C
Are calculators and TV remotes also concepts?
How do i know if something is a concept?- cs23
- Post #7
- Forum: General Discussion
-
C
Are calculators and TV remotes also concepts?
Centripetal acceleration is a concept. Can we say calculators,t.v. remotes are also concepts. OR only the intangible things are concepts (such as torque, centripetal acceleration)- cs23
- Thread
- Concept
- Replies: 9
- Forum: General Discussion
-
C
Concepts of Planar Kinematics of a Rigid Body
So is the concept the idea rather than the equation. If someone asked me to explain torque, would the concept be "a twisting force" rather than regurgitating the formula (t=fd)? The equation just allows to calculate things,right?- cs23
- Post #6
- Forum: STEM Academic Advising
-
C
Concepts of Planar Kinematics of a Rigid Body
Would you say that the concept is not necessarily the equations.(i don't know if that made sense).Basically, you can describe something without having to refer to the equations. For example, the concept of torque can be explained generally without having to go into specifics(i.e equation). I...- cs23
- Post #4
- Forum: STEM Academic Advising
-
C
Concepts of Planar Kinematics of a Rigid Body
I've always heard my profs say, you must understand the concepts rather than just memorizing how to solve a group of problems. lets say I'm reading a chapter on Planar Kinematics of a Rigid Body. Are the different sections the concepts?- cs23
- Thread
- Concept
- Replies: 8
- Forum: STEM Academic Advising
-
C
How to actually think through something
Thanks for the note. I have always heard "try to understand the concepts", but i don't think i get it. Is there a certain amount of knowledge i should have before i start on the problems? I read the theory(superficially that is) to get a general idea.- cs23
- Post #3
- Forum: STEM Academic Advising
-
C
How to actually think through something
I am quite pathetic when trying to solve problems. When solving problems i always refer back to solved examples. It's like comparing my self to someone who can trace a picture very well but can't draw the picture. The examples only help so far, once a much harder problem comes I'm finished. I...- cs23
- Thread
- Replies: 4
- Forum: STEM Academic Advising
-
C
Multiply matrices using threads
Homework Statement In my main function i am filling 2 matrices. Matrix A is 18x16 and MatrixB is 16x18. Then i am multiplying them in my thread function using an array of threads. However, i am getting segmentations faults when trying to run the program. #include<stdio.h> #include<pthread.h>...- cs23
- Thread
- Matrices Threads
- Replies: 1
- Forum: Engineering and Comp Sci Homework Help
-
C
I dont get how these matrices are mulitiplied together
Homework Statement H10 = c1 | -s1 | 0 s1 | c1 | 0 0 | 0 | 1 H21 = c2 | -s2 | 0 s2 | c2 | 0 0 | 0 | 1 Homework Equations this is what i did H10H21 = c1c2 -s1s2 | -c1s2 - s1c2 | 0 s1c2 + c1s2...- cs23
- Thread
- Matrices
- Replies: 1
- Forum: Precalculus Mathematics Homework Help
-
C
Good science or math books to read
Can anyone recommend any material to read leisurely?- cs23
- Thread
- Books Math books Science
- Replies: 17
- Forum: Science and Math Textbooks
-
C
Problem with pointer and structures in C
Sorry about that. THANKS SO MUCH!- cs23
- Post #7
- Forum: Programming and Computer Science
-
C
Problem with pointer and structures in C
the function total_mark will be used later to calculate the total mark based on weight percentages of the labs,test and final exam. For now i just want to see if i can point to a member in my structure to the function and then return it- cs23
- Post #3
- Forum: Programming and Computer Science
-
C
Problem with pointer and structures in C
I'm trying to point to the data in struct ele709_record john_doe into the total_mark function. But it's not working, the value returned is not the same as in struct. #include <stdio.h> struct lab { double experiment1; double experiment2; double experiment3; }; struct theory{...- cs23
- Thread
- Structures
- Replies: 6
- Forum: Programming and Computer Science