Find Jobs
Hire Freelancers

C program - Multiply matrices using loops only (no arrays) - open to bidding

$30-250 USD

Cancelled
Posted over 10 years ago

$30-250 USD

Paid on delivery
Hey there, I'm having trouble with my homework assignment and I would like to know if you could do it for me and add the // after a few functions. Basically i need to write a program that takes a number from 1-10 from the user and starts building 2 square matrices of the inputted number and multiplies them. The program will only print the final result here are the required square matrices: M0[i,j]=(i+1)*(j+1) M1[i,j]=(i+j) what i need to print: M2=M0*M1
Project ID: 5141563

About the project

33 proposals
Remote project
Active 10 yrs ago

Looking to make some money?

Benefits of bidding on Freelancer

Set your budget and timeframe
Get paid for your work
Outline your proposal
It's free to sign up and bid on jobs
33 freelancers are bidding on average $47 USD for this job
User Avatar
Hello, I can help you with your project. Need a bit more details as to how the matrices are initialized by the user and what compiler to be used As I could gather the user inputs the matrix dimension and the the matrix elements are defined as (i+1)*(j+1) and i*j, respectively for the two matrices. The aim is to calculate the matrix product without storing matrices as arrays, only based on the analytic formula for matrix elements. Correct? If that is the case, I think the problem can be solved in a matter of hours. Thank you, Serge
$45 USD in 3 days
5.0 (69 reviews)
5.5
5.5
User Avatar
I am very proficient in c, c++. I have 15 years c++ developing experience now, and I have worked for 5 years. My work is online game developing, and mainly focus on server side, the lauguage is c++ under linux os. So, programming in c++ is never a problem. I used c++ to make many great projects, for example, I made the tools which can convert java files to c++ with the same meaning, ofcourse garbage collection included. I made our own mobile game using c++, I even can show you the demo of client. Trust me, please let expert help you.
$45 USD in 0 day
4.9 (21 reviews)
4.7
4.7
User Avatar
Hi! I am professional C/C++/C#/Java programmer. I can do this project with highest quality. Best Regards, Szymszteinsl
$100 USD in 1 day
5.0 (14 reviews)
4.6
4.6
User Avatar
Hi, if the number taken from the user is N then you have M2[i,j] = N*(i+1)*[(N+1)(2N+1)/6 + (j+1)*(N+1)/2 + j] I will show you why is that and I will code the C program for you. Thanks, Adrian
$35 USD in 1 day
5.0 (11 reviews)
3.9
3.9
User Avatar
I have experience in C and I will help you. . . .
$55 USD in 3 days
5.0 (3 reviews)
3.9
3.9
User Avatar
Hello, I understood your requirement. I can do this assignment. I will provide you program within 3 hours of project acceptance. Regards Lokesh Jaiswal
$30 USD in 0 day
5.0 (18 reviews)
3.7
3.7
User Avatar
Hi, I am proficient in C and can complete this matrix multiplication as mentioned in the description without using any array. I can finish it in 1 hour if I start now. Thank You!
$35 USD in 1 day
5.0 (7 reviews)
3.6
3.6
User Avatar
hi... i can do this. Please let me know if you are interested to complete early. I can deliver you on time. thanks
$35 USD in 1 day
5.0 (10 reviews)
3.6
3.6
User Avatar
Contact me for an efficient, perfect, well documented development of your project according to 100% accuracy and requirements, with dedicated support. Thanks
$35 USD in 2 days
5.0 (18 reviews)
3.2
3.2
User Avatar
hi i can help you with this. please consider my bid. .
$30 USD in 0 day
5.0 (6 reviews)
3.1
3.1
User Avatar
can i help you, i have experience in reverse engineering and programming, just need the full information
$35 USD in 1 day
5.0 (3 reviews)
2.8
2.8
User Avatar
Can do it easily. Price -Negotiable. Lets discuss and go for it...........................................................
$155 USD in 3 days
5.0 (1 review)
1.2
1.2
User Avatar
Hello, I have finished the project, I can send the code to you immediately after accepting me as a bidder. Matrixes are multiplyed without using arrays (only in 'for' loops). Contact me for the details. Kind regards, Nikola P.S. Below is example of the console interface output: ----------------------------------------------------------------------- Enter the size (0 to exit): 4 M0 = [ 4 6 8 10 6 9 12 15 8 12 16 20 10 15 20 25 ] M1 = [ 2 3 4 5 3 4 5 6 4 5 6 7 5 6 7 8 ] M2 = [ 108 136 164 192 162 204 246 288 216 272 328 384 270 340 410 480 ] -------------------------------------------------------------- Enter the size (0 to exit): 5 M0 = [ 4 6 8 10 12 6 9 12 15 18 8 12 16 20 24 10 15 20 25 30 12 18 24 30 36 ] M1 = [ 2 3 4 5 6 3 4 5 6 7 4 5 6 7 8 5 6 7 8 9 6 7 8 9 10 ] M2 = [ 180 220 260 300 340 270 330 390 450 510 360 440 520 600 680 450 550 650 750 850 540 660 780 900 1020 ]
$30 USD in 0 day
5.0 (1 review)
0.6
0.6
User Avatar
Hi! I am a physicist. I am well experienced in C programming. I can help you with the assignment providing high quality results.
$77 USD in 3 days
5.0 (1 review)
0.5
0.5
User Avatar
Hi there, i am postgraduate in computer science and i am sure that can help you to get good grades .award this project to me for good grades.... i will provide you fully commented code which is easy to understand. can you provide more details on chat for better understanding.? Thanks Arpit
$55 USD in 3 days
0.0 (0 reviews)
0.0
0.0
User Avatar
Hello, I am a Computer Science student in a University that emphasises in the C language. There, I have faced a lot of similar assignments successfully. I believe I have already solved this one :)
$30 USD in 1 day
0.0 (0 reviews)
0.0
0.0
User Avatar
Hi, I've written an opengl application recently, which involves matrix math, so basically i already have the code you need. Do you need strictly C or C++ will be good as well? Andrei
$30 USD in 1 day
0.0 (0 reviews)
0.0
0.0
User Avatar
Hi, The requirement is not very clear to me, but what I got from your requirement is that the dimension of the matrix will be given in advance, and you know in which order the matrix inputs will be given. We can keep couples of tmp variables to store temporary data and then just loop over the whole input data and keep on multiplying on the fly. If you give me a sample input sequence, then it will be helpful.
$30 USD in 1 day
0.0 (0 reviews)
0.0
0.0
User Avatar
Aucune proposition n'a encore été fournie.
$55 USD in 1 day
0.0 (0 reviews)
0.0
0.0
User Avatar
Hi, I'm a good student of Moldova State University. I can do you homework very good and fast ) I have great experience in doing diferent programms in c and c++; So, you can hire me ) Thank you.
$30 USD in 1 day
0.0 (0 reviews)
0.0
0.0

About the client

Flag of ISRAEL
Tel Aviv, Israel
5.0
6
Payment method verified
Member since Nov 13, 2013

Client Verification

Thanks! We’ve emailed you a link to claim your free credit.
Something went wrong while sending your email. Please try again.
Registered Users Total Jobs Posted
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
Loading preview
Permission granted for Geolocation.
Your login session has expired and you have been logged out. Please log in again.