Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7993867
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T13:58:50+00:00 2026-06-04T13:58:50+00:00

I am trying to create a C mex file that will multiply an input

  • 0

I am trying to create a C mex file that will multiply an input Nx1 matrix by a constant Nx1 matrix. I want to create a matrix and assign it values that will always be the same for every call of the mex function. I have been looking at tutorials but all I can find are people creating matrices and tying them to either the input or output. My matrix should be completely independent of that.

Pseudo code of what I’m trying to do:

mxArray *input, *constant_matrix, *output;
input = mxDuplicateArray(prhs[0]);
constant_matrix = [10 15 20 73];            //<---- this is what I can't do.
for i = 1 to 4
    output += input[i]*constant_matrix[i];
return output;

Thank you in advance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T13:58:51+00:00Added an answer on June 4, 2026 at 1:58 pm

    If you want to create it on the stack, just do

    const double constant_matrix[]={10,15,20,73};
    

    ..or if the matrix is a bit bigger, or you don’t know its size at compile time, you want to heap allocate. In a mex file use…

    double* constant_matrix = (double*)mxCalloc(n, sizeof(double));
    

    ..and then populate it in a loop (where n is the number of elements). Do not forget to free the dynamically allocated memory if you use this second method.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create a mex file that interfaces MATLAB with an external
I am trying to create a simple C++ class and a Matlab mex file.
I'm trying create a query that will output a total number, as well as
I'm currently trying create a service that will return results of a OLAP cube
Trying to create a widget in the baseclass and the only thing that will
I'm trying create a box in my Django app that displays text (and possibly
I am trying create a small web application that allows a user to login
Trying to create a simple document that gets the parentNode then applies a background
Trying to create a very piece of validation to prevent spammers. I want a
I'm trying create this function such that if any key besides any of the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.