photo

Joseph Wilson


Last seen: 4 years 前 自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

0 个提问
7 个回答

File Exchange

1 文件

Cody

0 个问题
1 个答案

排名
3,355
of 297,457

声誉
16

贡献数
0 个提问
7 个回答

回答接受率
0.00%

收到投票数
0

排名
17,526 of 20,438

声誉
3

平均
3.00

贡献数
1 文件

下载次数
1

ALL TIME 下载次数
33

排名
128,607
of 158,938

贡献数
0 个问题
1 个答案

评分
20

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer
  • First Submission
  • Solver

查看徽章

Feeds

排序方式:

已回答
How to iterate an equation to solve for missing variable
So there are a couple problems here: 1) the for loop can't start at zero so change to for i = 1:length(theta) solves that 2) ...

4 years 前 | 0

| 已接受

已回答
How to randomly change a digit in a string
string1 = '00101'; digit_change = randi(length(string1)); digit_val = str2num(string1(digit_change)); digit_new = num2str(~di...

4 years 前 | 0

| 已接受

已回答
Invalid use of operator in for loop
theta0 = tand(v0y/v0x) while theta0 > 90 || theta0 < 0 % where the '>' gives an error message end Changin...

4 years 前 | 0

| 已接受

已回答
MATLAB interrupting the algorithm by timer
clear;clc timerval = tic; while 1 endval = toc(timerval); if endval>=3 break end end %tic/toc are b...

4 years 前 | 0

已回答
why wont text scan read all rows?
fileID = fopen('car_data.txt'); fmt=[repmat('%q',1,8) '%s %*[^\n]']; %have to have %*[^\n] to ignore the rest of that row which...

4 years 前 | 0

已回答
Repeat input prompts until conditions are met or until prompts asked 3 times
%%%No matter what, your issue of " it simply takes the values given even if they are wrong." is going to occur since MATLAB is %...

4 years 前 | 0

| 已接受

已回答
Help with my matlab function.
type_of_metal_BD = questdlg('prompt question i.e. Type of metal for BD?','Title of prompt','bronze', 'aluminum', 'steel','steel'...

4 years 前 | 0

已提交


Making a new .txt or .xlsx file automatically
This function auto generates a new file for data collection to prevent the overwriting of data without the need for manual file ...

5 years 前 | 1 次下载 |

3.0 / 5
Thumbnail

已解决


Number of Even Elements in Fibonacci Sequence
Find how many even Fibonacci numbers are available in the first d numbers. Consider the following first 14 numbers 1 1 2...

5 years 前