photo

Agent Cooper


自 2012 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

11 个提问
1 个回答

Cody

0 个问题
43 个答案

排名
220,067
of 299,791

声誉
0

贡献数
11 个提问
1 个回答

回答接受率
81.82%

收到投票数
0

排名
 of 20,807

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
13,387
of 165,966

贡献数
0 个问题
43 个答案

评分
410

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 3
  • Solver

查看徽章

Feeds

排序方式:

已回答
FOR loop with IF condition alternative
Thank you very much, Hikaru and Amir. Both answers were of great use.

11 years 前 | 0

提问


FOR loop with IF condition alternative
I have the following code I = [1:1:10; 10:10:100]' a = size(I) limit1 = 1 limit2 = 3 limit3 = 7 ...

11 years 前 | 3 个回答 | 0

3

个回答

提问


Save paired values from a FOR loop
I have the following FOR loop I = imread('image.png') for i = 2:1:5 init = ones(i) ...

11 years 前 | 1 个回答 | 0

1

个回答

提问


Save FOR loop values in a matrix or a vector
I have the following function with two FOR loops: function Y = rot_mat(X) n = sqrt(numel(X)) for x ...

11 years 前 | 1 个回答 | 0

1

个回答

提问


Multiple vector output in a function
I am trying to define a function that returns two vectors. function [X, Y] = element_select(A,B,astart,astep,bstart,bst...

11 years 前 | 1 个回答 | 0

1

个回答

提问


Get rid of an unwanted zero element in an IF loop
I'm trying to create a function that returns only the elements in a vector which repeats exactly three times using the following...

11 years 前 | 1 个回答 | 0

1

个回答

提问


How to extract all the values from a while loop into a vector
I have the following function function c = nice(n) c = n while c ~= 1 if rem(c,2) == 0 c = ...

11 years 前 | 2 个回答 | 0

2

个回答

提问


Matrix from a for FOR loop with IF conditioning
I have the following problem: A = [1 2 3; 4 5 6; 7 8 9] for i = 1:n if rem(i,2)== 0 x =...

11 years 前 | 3 个回答 | 0

3

个回答

提问


vec2mat function unrecognized by Cody
Hello, I tried to solve the "Create times-tables" problem in Matlab Cody and it appears that the vec2mat function is not reco...

11 years 前 | 1 个回答 | 0

1

个回答

提问


Save FOR loop data into a vector
Dear all, I am trying to save the data that I get from a FOR loop into a vector. Here is my example: X = [ -5 1 -2 9 ...

11 years 前 | 2 个回答 | 0

2

个回答

提问


How to evaluate the x value corresponding to an y value from a plotted y(x)?
I am trying to evaluate the x value corresponding to an y value, after plotting y(x). How can I do that for any kind of values? ...

13 years 前 | 1 个回答 | 0

1

个回答

提问


How to evaluate multiple definite integrals using the integral(F,min,max) function?
I am trying to evaluate the integral of a function F using the integral(F,min,max) Matlab built-in function. The problem is that...

13 years 前 | 1 个回答 | 0

1

个回答