photo

oyku gokce


Last seen: 6年弱 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

6 質問
0 回答

ランク
174,200
of 301,352

評判
0

コントリビューション
6 質問
0 回答

回答採用率
33.33%

獲得投票数
0

ランク
 of 21,240

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 174,068

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 2
  • Thankful Level 1

バッジを表示

Feeds

表示方法

質問


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年弱 前 | 0 件の回答 | 0

0

回答

質問


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年弱 前 | 1 件の回答 | 0

1

回答

質問


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年弱 前 | 0 件の回答 | 0

0

回答

質問


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年弱 前 | 1 件の回答 | 0

1

回答

質問


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年弱 前 | 1 件の回答 | 0

1

回答

質問


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年弱 前 | 1 件の回答 | 0

1

回答