photo

oyku gokce


Last seen: 6 years ago Active since 2020

Followers: 0   Following: 0

Statistics

MATLAB Answers

6 Questions
0 Answers

RANK
174,200
of 301,344

REPUTATION
0

CONTRIBUTIONS
6 Questions
0 Answers

ANSWER ACCEPTANCE
33.33%

VOTES RECEIVED
0

RANK
 of 21,239

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 174,068

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


invalid range and called from errors
function[S]=yanit11(m,n) T=0; for m=1:inf C=1; for n=1:inf C=C*(m+n)/(m-(n^2)) end T=T+C; end S=T; end

6 years ago | 0 answers | 0

0

answers

Question


error: invalid range ; What could be the reason for the invalid error in the code I wrote? If the reason is inf, will they explain ?
function[S]=yanit6(x,N) T1=0; for n=1:inf C=1; for o=1:inf T2=0; for m=1:inf end T2=T2+o^m*N*x^k; ...

6 years ago | 1 answer | 0

1

answer

Question


my problem ∏n=0 ^∞ x\ (n!) ^2 but my code did't work just say error: 'n' undefined near line 5 column 10 error: called from
x= (input("1.tam sayi: ")); n= (input("2.tam sayi: ")); function[S]=yanit6(x,n) c=0; for i =0:n c= c+ (x\(factorial(n)^2)...

6 years ago | 0 answers | 0

0

answers

Question


my goal is to make the biggest common partition but says syntax error >>> if(y==0)
a=int(input("1.tam sayi: ")); b=int(input("2.tam sayi: ")); fprintf(" \nEBOB(%d,%d)=%d\n" ,a,b,ebob(a,b); function [S]=ebob(x...

6 years ago | 1 answer | 0

1

answer

Question


my problem e ^x= ∑n=0 ∞ * x ^n\ n ! but this program didn't work . it gives infinity error and I don't know how to use it. invalid range and called from errors
function [S] = yanital(x,y) T=0; for n=0:inf nf=1; for i=1:n nf=nf*i; T=T(x^n/nf) S=T; ...

6 years ago | 1 answer | 0

1

answer

Question


syntax error,my goal is to calculate the smallest common divisor with the entered numbers. but I can not do . it constantly gives syntax error. given by fprintf
a=input ('1.tamsayi: '); b=input ('2.tamsayi: '); for i=1:a*b if((mod(i,a)==0) && (mod(i,b)==0) fprintf (' \nOkek(%d,%d...

6 years ago | 1 answer | 0

1

answer