CARLOS RIASCOS - MATLAB Central
photo

CARLOS RIASCOS


Last seen: 1 year 前 自 2017 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB AnswersFrom 09/17 to 04/25Use left and right arrows to move selectionFrom 09/17Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 个提问
13 个回答

排名
2,727
of 298,292

声誉
22

贡献数
0 个提问
13 个回答

回答接受率
0.00%

收到投票数
3

排名
 of 20,560

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 160,775

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
How can I extract fields from a structure and create variables in the MATLAB workspace for example i need to extract every row in the field of position as shown below
You can try to understand a structure from the following code, in which several types of data are defined within a structure cal...

5 years 前 | 0

已回答
Convert a numerical variable in a table to string
Starting from the fact that you have the variable 'pic = [70, 40, 60, 70, 50, 65 ...]' defined you could convert that row vector...

7 years 前 | 0

已回答
Solving nonlinear 2nd order differential equation with signum using ODE solvers?
Hello friend, in what I could see was from your work I realized two things that can help you. The first is that you can model as...

7 years 前 | 0

| 已接受

已回答
Is there any way to use multiple tolerances in ODE solvers?
Hello friend, you could try, generate for example two systems of equations one with slow dynamics and another with fast dynamics...

7 years 前 | 0

已回答
How can I found the value of 'x' such that I should get the known value 'y' in below equation ?
I recommend you look at this: https://es.mathworks.com/help/symbolic/solve.html. teaches you how you can with symbolic mathemati...

7 years 前 | 1

已回答
Help with writing a code for computing the area under a curve.
Hello brother, I hope that my code can help you, it is the trapezoidal method defined in the attached image. <<http://test....

7 years 前 | 0

已回答
How can I create this function?
This code should return in the variables: B_mtrx_a, C_mtrx_a, a_; a "history" of calculations of matrix B, C and vector a. Obser...

7 years 前 | 1

已回答
How can I correctly use consecutive numbers in a iteration?
Hello friend, I did this for you, I hope it helps you. Note: Change the values ​​of the variables mk and e to the values ​​th...

7 years 前 | 0

| 已接受

已回答
ode45 Not enough input arguments
try this: function dvdt = gprime(t,v) global R global C V = 5*sin(30*2*pi*t) + 0.1*sin(5400*2*pi*t); ...

7 years 前 | 0

| 已接受

已回答
How to create a program that compares outputs in dictionary lexicographic
Hi, try this function, it worked for me !, look how I use it in the image: function tlex = compare(int1,int2) ...

7 years 前 | 0

已回答
How can I create this function?
I did this for you, I hope it serves you. % Definition of constants: k=2; Bj=[1 2; 3 4]; %In this case Bj is...

7 years 前 | 1

| 已接受

已回答
How do I compute a line integral of a function over a helix?
Hello brother, here is a code I did with symbolic mathematics using the mathematical definition of line integral with a vecto...

7 years 前 | 0

已回答
How to save a figure as a PDF with given aspect ration, resolution (and size)
Hello friend, maybe the following code will serve you. Basically what it does is to change the characteristics of the plot, p...

7 years 前 | 0