Osman Ballhysa
Followers: 0 Following: 0
Feeds
질문
error: Out of memory. The likely cause is an infinite recursion within the program.
function y = my_sin(x,n) if n<=0 %if y=0/neg. Numer -->y=0 y = 0; elseif n~= floor(n) %if y= ...
3년 초과 전 | 답변 수: 1 | 0
1
답변질문
how do i solve this summation ?
how can i solve this summation ? everybody here on the community seems to hate symsum, so what´s the alternative . Please he...
3년 초과 전 | 답변 수: 2 | 0
2
답변질문
symsum gauß, how to calculate sum of series ?
Hello everyone, so this is what i was working on , function y = sin(x,n) if n<=0 %if y=0/neg. Numer...
3년 초과 전 | 답변 수: 1 | 0
1
답변질문
Sum of even numbers
this is what i was trying function s = test(n) if n <= 0 %for n<= 0 the result would be 0 s = 0; elseif % if n is a de...
3년 초과 전 | 답변 수: 2 | 0
2
답변질문
how to filter out decimals
function s = Fnkt(n) syms k x s = symsum(k,k,0,n); if s<=0 s = 0; end Can somebody help me figure out, how do i filter ...
3년 초과 전 | 답변 수: 1 | 0