photo

Carly Hudson


Last seen: 2 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

7 个提问
0 个回答

Cody

0 个问题
3 个答案

排名
63,242
of 299,784

声誉
0

贡献数
7 个提问
0 个回答

回答接受率
42.86%

收到投票数
0

排名
 of 20,803

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
75,331
of 165,909

贡献数
0 个问题
3 个答案

评分
40

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Solver
  • Thankful Level 2

查看徽章

Feeds

排序方式:

已解决


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

3 years 前

已解决


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

3 years 前

已解决


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

3 years 前

提问


Drawing lines with a handle
Hello. I am working on a project and I am having a hard time plotting a "line for each link". I have tried the plot and line fun...

3 years 前 | 1 个回答 | 0

1

个回答

提问


Creating empty cell array with function
function link_set = build_links(link_vectors); % Use the 'cell' 'and 'size' commands to create an empty cell array the %...

3 years 前 | 1 个回答 | 0

1

个回答

提问


How do I add a legend in a for loop of variables from an array?
Hello, I am attempting to input of an array into a legend, in a for loop. I am having trouble, but I think I am almost there. A...

5 years 前 | 1 个回答 | 0

1

个回答

提问


Having trouble with legend
Here is my code: %Line Colors strColor = {'-r','-g','-b'}; %Legend String strLegend = {'nSamples = 5','nSamples = 10','nSa...

5 years 前 | 2 个回答 | 0

2

个回答

提问


Getting error about index in for loop
%for loop for plotting given data for k = 0:size(dataN) val = dataN(:,k); avg = mean(val); end I am getting this er...

5 years 前 | 1 个回答 | 0

1

个回答

提问


How to make an array of function outputs?
%equation for y yFunction = @(t) ((4.*t.^3)+(3.*t.^2)+(5.*t)+5); %Plotting the function fplot(yFunction,[-10,10]); I am tr...

5 years 前 | 2 个回答 | 0

2

个回答

提问


How to index a variable value and assign it to an array?
I am a beginner in MatLab and I am trying to assign a variable value to an array. Ex: d1 = 579 y = array(d1) I know I can ...

5 years 前 | 1 个回答 | 0

1

个回答