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 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 1 个回答 | 0