photo

Ildeberto de los Santos Ruiz


Last seen: Today 自 2019 起处于活动状态

Followers: 1   Following: 0

消息

Profesor en el TecNM, adscrito al Instituto Tecnológico de Tuxtla Gutiérrez.

Programming Languages:
Python, C++, C, Java, Javascript, MATLAB, HTML, CSS, Arduino, Assembly
Spoken Languages:
English, Spanish
Pronouns:
He/him

统计学

All
MATLAB Answers

0 个提问
7 个回答

File Exchange

15 文件

Cody

0 个问题
15 个答案

ThingSpeak

7 公开的 个频道

排名
4,394
of 300,073

声誉
12

贡献数
0 个提问
7 个回答

回答接受率
0.00%

收到投票数
2

排名
2,588 of 20,866

声誉
661

平均
5.00

贡献数
15 文件

下载次数
38

ALL TIME 下载次数
5236

排名
28,280
of 167,242

贡献数
0 个问题
15 个答案

评分
172

徽章数量
1

贡献数
0 帖子

贡献数
7 公开的 个频道

平均
61

贡献数
0 个亮点

平均赞数

  • MATLAB Flipbook Mini Hack Participant
  • MATLAB Mini Hack 2022 Participant
  • Solver
  • 5-Star Galaxy Level 4
  • Personal Best Downloads Level 3
  • Knowledgeable Level 1
  • First Answer
  • First Review
  • GitHub Submissions Level 3
  • First Submission

查看徽章

Feeds

已回答
Solving nonlinear equation involving sum
It will take you a long time to evaluate the sum from n = 0 to n = 10000. You can solve it in a short time considering only fro...

4 years 前 | 0

已回答
How to solve 3 simultaneous algebraic equations with a equality constraint.
You only need to express in terms of and plot that relationship: syms x1 x2 x3 t x3 = solve(x1+x2+x3 == 420,x3) EQ1 = x1 ==...

4 years 前 | 0

已回答
how can I plot a unit step function?
This is my proposal, I hope it helps you: u = @(t) double(t>=0); h = @(t) u(t-2)-u(t-4); fplot(h,[0,5])

4 years 前 | 2

已回答
how to write a user defined function that calculates the maximum or minimum of a quadratic equation of the form
Try this: --------------------- f = @(x) x^2-5*x+6; initial = 0; fminsearch(f,initial) --------------------- To find a max...

6 years 前 | 0

已回答
Why power function give a complex number result?
The "problem" appears when you raise the base (-x / x50) to power n. In IEEE floating-point computations: a ^ n = exp(n * log(...

6 years 前 | 0

已回答
Haw can I calculate the difference between two points in a plot?
Try this: --------------------------------------- plot(...) [x,y] = ginput(2); % clic on each point dx = diff(x) dy = diff(...

6 years 前 | 0

| 已接受

已回答
Adding semicolon and comma and saving it into .txt file
Try this low-level code: ----------------------------------------- x = randi(9,[1,2*6001]); % ACTUAL DATA fileID = fopen('da...

6 years 前 | 0

| 已接受