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 6358421
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T23:22:16+00:00 2026-05-24T23:22:16+00:00

I need to get the solution of an equation system. For this purpose i

  • 0

I need to get the solution of an equation system. For this purpose i use the function sgesv_().

Everything works great, and it retur me the right results of the solution.

But i get an strange Warning.

warning: passing argument 3 of ‘sgesv_’ from incompatible pointer type

I am using the function as Apple use it on the WWDC video.

What am I doing wrong?

a1,a2,b1,b2,c1,c2 are floats

        __CLPK_integer info;
        __CLPK_integer n=2;
        __CLPK_integer nb=1;
        __CLPK_integer ipiv[n];
        float A[n][n];
        A[0][0]=a1;
        A[0][1]=a2;
        A[1][0]=b1;
        A[1][1]=b2;
        float B[n];
        B[0]=-c1;
        B[1]=-c2;
        sgesv_(&n, &nb, A, &n, ipiv, B, &n, &info);
  • 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-05-24T23:22:17+00:00Added an answer on May 24, 2026 at 11:22 pm

    The third parameter is meant to be a float * but you’re passing a 2D array of float. It just so happens that these floats are in the right order. To get rid of the warning you can do this:

        sgesv_(&n, &nb, &A[0][0], &n, ipiv, B, &n, &info);
    

    or this:

        sgesv_(&n, &nb, A[0], &n, ipiv, B, &n, &info);
    

    or even this:

        sgesv_(&n, &nb, (float *)A, &n, ipiv, B, &n, &info);
    

    Or you could just “flatten” your A array, e.g.

        float A[n * n];
        A[0 * n + 0] = a1;
        A[0 * n + 1] = a2;
        A[1 * n + 0] = b1;
        A[1 * n + 1] = b2;
        // ...
        sgesv_(&n, &nb, A, &n, ipiv, B, &n, &info);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have an equation like this: I need to get G[xy] . How
I need to get my IP (that is DHCP). I use this in my
There should be a simple solution for this. I need to get an input
I need get position element in table. But function position() returns me to the
I need some light to get a solution. Probably there are tons of things
I desperately need a solution for this... I m using Blackberry JDE 5.0. In
I need get it independent if the network connection is active or not. I
Just need get some vals located in application.ini(main ini) in the Controller plugin I
I need get all items these have no categories int? categoryId = null; var
Well, I need get two values that represents the distance between two full dates-only

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.