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

  • Home
  • SEARCH
  • 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 6599187
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:27:27+00:00 2026-05-25T18:27:27+00:00

How can I initialize a SparseVector in Eigen ? The following code: #define EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET

  • 0

How can I initialize a SparseVector in Eigen ? The following code:

#define EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET
#include <Eigen/Sparse>
using namespace Eigen;
SparseVector<float> vec(3);
main()
{
  vec(0)=1.0;
}

gives me the following error

error: call of an object of a class type without appropriate operator() or conversion functions to pointer-to-function type
vec(0)=1.0;

by the way, vec[0]=1.0 doesn’t work either.

  • 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-25T18:27:27+00:00Added an answer on May 25, 2026 at 6:27 pm

    Looking at the documentation I noticed Scalar& coeffRef(Index i), and it says:

    Returns a reference to the coefficient value at given index i. This operation involes a log(rho*size) binary search. If the coefficient does not exist yet, then a sorted insertion into a sequential buffer is performed. (This insertion might be very costly if the number of nonzeros above i is large.)

    So the following should work:

    #define EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET
    #include <Eigen/Sparse>
    using namespace Eigen;
    SparseVector<float> vec(3);
    main()
    {
        vec.coeffRef(0)=1.0;
    }
    

    Not sure why they did it that way instead of using array overloading. Perhaps when it becomes IS_STABLE then they’ll do it in a more typical C++ way?

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

Sidebar

Related Questions

I can initialize or create a new CCSprite object using the following code: NSString
In PHP, you can initialize arrays with values quickly using the following notation: $array
In C#, I can initialize a list using the following syntax. List<int> intList= new
Using C# 3.0, we can initialize objects without their constructors for syntactical reasons. Such
According to the PHP docs, one can initialize properties in classes with the following
Is there a way I can initialize the following runtime array to all true
If using a char* , I can initialize it to NULL and later check
You can initialize an array like this: int [ ] arr = { 1,
In C++ you can initialize a variable in an if statement, like so: if
In spring you can initialize a bean by having the applicationContext.xml invoke a constructor,

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.