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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T10:46:43+00:00 2026-06-09T10:46:43+00:00

I want to make the code below fast. It takes so long time to

  • 0

I want to make the code below fast. It takes so long time to run, and I got this error:

Warning: FOR loop index is too large. Truncating to 2147483647.

I need to calculate over 3^100 so… is it impossible?

function sodiv = divisorSum(n)
    sodiv = 0;
    for i=1:n
        if (mod(n,i) == 0)
            sodiv = sodiv + i;
        end
    end
end

function finalSum1 = formular1(N,n)
    finalSum1 = 0;
    for k = 1:N
       finalSum1 = finalSum1 + (divisorSum(k) * divisorSum(3^n*(N-k)));
    end
end

Nv=100;
nv=[1:20];

for i=1:length(nv)
    tic;
    nfunc1(i)=formular1(Nv,nv(i));
    nt1(i)=toc;
    sprintf('nt1 : %d finished, %f', i,nt1(i))
end

The purpose of this code is to check the algorithm’s calculation time.

  • 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-09T10:46:46+00:00Added an answer on June 9, 2026 at 10:46 am

    This code will never finish, because it is so inefficient.

    For instance, there is a function that counts number of all divisors and is going through all numbers from 1 to N and count. But using an efficient formula would make it run much master.

    Let’s say that one need to sum divisors of number a^b where a is prime number.
    Instead of calculating a^b and going form 1 to a^b, one can see that it is better going
    a^1, a^2, a^3, ..., a^n, because only these numbers are divisors. But you can go even further and observe that the sum of these numbers are the sum of geometric progression so the number of divisors become:

    sum divisors, a^b = (a^(b+1)-1) / (a-1)

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

Sidebar

Related Questions

This is my code below and I want to make the value in the
This is my ajax pager code below: Now I want to make sure that
I have this code that I want to make point-free; (\k t -> chr
I want to make a datagridview from sqlite db i found below code in
Just want to make sure my test code below is proper. I've been reading
In this case I want to make the code work only if there are
the code below is working, but I want to make sure it's correct .
I want to make a simple calculator My code is below: package som.dev.android.calc; import
I have the following snippet of code (see below) and want to make the
I want to make a code snippet database web application. Would the best way

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.