Community Profile

photo

Haseeb Ahmed Janjua


Aktiv seit 2017

Followers: 0   Following: 0

Statistiken

  • Thankful Level 1
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


I have created code for banded gauss elimination method but on running it gives an error of index exceeds matrix dimensions
function x = gauss_elimination(K,M); ln = length(M); x = zeros(ln,1); for n=1:ln-1 for i=n+1:ln ...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


why im getting a sparse error in line 4 in editor, actually my cursor is red
function c = bisection(a,b,tolb) while (b-a)/2> tolb midp=a+b/2; if pb(midp)=0 ...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


index exceeds matrix dimension
whenever I create this function in editor function r = Ymaxfinal(p,q) r = ((-1000*p*q)/(27*(30*10^6)*0.163*(p+q)))*(...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Index exceeds matrix dimensions
whenever I create this function in editor function r = Ymaxfinal(p,q) r = ((-1000*p*q)/(27*(30*10^6)*0.163*(p+q)))*(p+(2*q...

mehr als 6 Jahre vor | 0