photo

Daniel


Last seen: 3 years 前 自 2022 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

6 个提问
0 个回答

排名
275,887
of 300,950

声誉
0

贡献数
6 个提问
0 个回答

回答接受率
50.0%

收到投票数
0

排名
 of 21,120

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 171,885

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 2

查看徽章

Feeds

排序方式:

提问


How to find the maximum element by length without a loop?
I have 2 strings: a and b. How to get the longer one using built-in functions?

3 years 前 | 2 个回答 | 0

2

个回答

提问


How to increase precision in this case?
I have a code which finds the first 10 consecutive numbers after decimal that forms a prime number: k = 10; while true a =...

3 years 前 | 1 个回答 | 0

1

个回答

提问


Find the first 10 consecutive numbers after decimal point of pi and e that forms a prime number
k = 10; while true a = mod(floor((pi-3)*10^k),10^10); if isprime(a) == 1 printf('Numbers after decimal: %d\n',a) ...

3 years 前 | 0 个回答 | 0

0

个回答

提问


Help pls. Find the first 10 consecutive numbers after the decimal point in e and pi which sum is the prime number
Find the first 10 consecutive numbers after the decimal point in e and pi which sum is the prime number isprime() checks if nu...

3 years 前 | 0 个回答 | 0

0

个回答

提问


Random numbers generation problem
How to create randi([a,b],1,c) in which every number is not divided by 2,3,5,7,11 ? Or not neccecary in randi, it can be other f...

3 years 前 | 2 个回答 | 0

2

个回答

提问


How to simplify that?
How to simplify while or (mod(i,2) == 0, mod(i,3) == 0, mod(i,5) == 0, mod(i,7) == 0, mod(i,11) == 0) I...

3 years 前 | 1 个回答 | 0

1

个回答