Tulio - MATLAB Central
photo

Tulio


Last seen: 18 days 前 自 2013 起处于活动状态

Followers: 0   Following: 0

消息

Professional Interests: finance, derivatives, fixed income, trading

统计学

All
MATLAB AnswersCodyZoom OutFrom 12/13 to 03/25Use left and right arrows to move selectionFrom 12/13Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

6 个提问
3 个回答

Cody

0 个问题
9 个答案

排名
19,153
of 297,851

声誉
2

贡献数
6 个提问
3 个回答

回答接受率
50.0%

收到投票数
1

排名
 of 20,493

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
39,245
of 159,663

贡献数
0 个问题
9 个答案

评分
100

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

提问


Link a shared library in a dll and call it in VBA
I deployed a code from matlab as a C++ Shared Library. When I run the code as a console application it works perfectly fine. ...

7 years 前 | 0 个回答 | 0

0

个回答

提问


How can I vectorize this Nested for loop
I'm trying to vectorize the inner loop but I'm not being able to. for i = 1:NTS U(1) = 0; V(1) = 0; ...

8 years 前 | 0 个回答 | 0

0

个回答

提问


PCA Eigenvalue correspondence with matrix data
Hi all, How do I know which Eigenvalue corresponds to which Matrix dats columns. For example suppose I have a 3x3 matrix and...

11 years 前 | 0 个回答 | 0

0

个回答

已回答
Unbounded Sized Variables Code Genaration
I had a friend that figured it out. // Initialize Cov Matrix emxArray_real_T *Cov = emxCreate_real_T(cols, cols); /...

11 years 前 | 0

| 已接受

提问


Unbounded Sized Variables Code Genaration
Recently i tried to use c-shraed library with c#. as you can see here http://www.mathworks.com/matlabcentral/answers/110992-matl...

11 years 前 | 1 个回答 | 0

1

个回答

已回答
how to convert a 2D matrix to a column vector?
For example a 7x7 matrix; Ncols=7; Nrows=7; c=0; ColVec=zeros(Ncols*Nrows,1); for i=1:Nrows for j=1:Ncols ...

11 years 前 | 0

已回答
Matlab codegen and CLI/CLR class
Making a long story short. After generating the C shared library you add the project.H project.Lib and project.dll as a library ...

11 years 前 | 1

| 已接受

提问


Matlab codegen and CLI/CLR class
Hi everyone, I'm trying to add some code generated from Matlab into a a project in C#. So basically the C# code will call a C...

11 years 前 | 1 个回答 | 0

1

个回答

已解决


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

11 years 前

已解决


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

11 years 前

已解决


Is my wife right?
Regardless of input, output the string 'yes'.

11 years 前

已解决


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

11 years 前

已解决


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

11 years 前

已解决


Add two numbers
Given a and b, return the sum a+b in c.

11 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...

11 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:...

11 years 前

已解决


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

11 years 前

提问


Efficient way to import large date sets
Hi All, For the past couple of month I have been working with Intraday quotes for stocks and futures. I was focusing more on ...

11 years 前 | 1 个回答 | 0

1

个回答