photo

Jesús Zambrano

Last seen: 4일 전 2018년부터 활동

Followers: 0   Following: 0

Senior Training Engineer at The MathWorks, in Stockholm (Sweden) since 2018, where I deliver MathWorks products and application specific training to customers in Nordics and Europe. Primary areas of instructions include mathematical modeling and simulation, verification and validation, C/HDL code generation, Stateflow, signal processing.

Programming Languages:
C, MATLAB, Arduino, VHDL
Spoken Languages:
English, Spanish
Pronouns:
He/him
Professional Interests:
Modeling, Stateflow, Code Generation, Verification, Testing, and Certification, HDL Code Generation from Simulink

통계

All
MATLAB Answers

2 질문
149 답변

Cody

12 문제
591 답안

순위
417
of 300,756

평판
192

참여
2 질문
149 답변

답변 채택
100.0%

획득한 표
27

순위
 of 21,077

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
198
of 170,890

참여
12 문제
591 답안

점수
7,173

배지 수
25

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • MATLAB Mini Hack Participant
  • Treasure Hunt Participant
  • Thankful Level 2
  • Knowledgeable Level 4
  • Cody Challenge Master
  • Quiz Master
  • First Review
  • CUP Challenge Master
  • Scholar
  • Draw Letters
  • MATLAB Central Treasure Hunt Finisher
  • 12 Month Streak

배지 보기

Feeds

보기 기준

문제를 풀었습니다


Getting the indices from a matrix
Inspired by Problem 645. Getting the indices from a matrix. Given a matrix A (or a vector), return the indices (always in row...

4개월 전

문제를 풀었습니다


Remove all the words that end with "ain"
Given the string s1, return the string s2 with the target characters removed. For example, given s1 = 'the main event' your ...

4개월 전

문제를 풀었습니다


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

4개월 전

문제를 풀었습니다


Find state names that start with the letter N
Given a list of US states, remove all the states that start with the letter N. If s1 = 'Alabama Montana Nebraska Vermont Ne...

4개월 전

문제를 풀었습니다


Word Counting and Indexing
You are given a list of strings, each being a list of words divided by spaces. Break the strings into words, then return a maste...

4개월 전

문제를 풀었습니다


Given two arrays, find the maximum overlap
Given two (integer) arrays s1 and s2, create a new array s3 which is as short as possible and contains both arrays. #1 s1 = [...

4개월 전

문제를 풀었습니다


It dseon't mettar waht oedrr the lrettes in a wrod are.
An internet meme from 2003 (read more here) asserted that readers are relatively insensitive to letter order in words, so long a...

4개월 전

문제를 풀었습니다


Counting in Finnish
Sort a vector of single digit whole numbers alphabetically by their name, in Finnish. See the Wikipedia page for <http://en.wik...

4개월 전

문제를 풀었습니다


Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...

4개월 전

문제를 풀었습니다


Quote Doubler
Given a string s1, find all occurrences of the single quote character and replace them with two occurrences of the single quote ...

4개월 전

문제를 풀었습니다


Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
If p is the perimeter of a right angle triangle with integral length sides, { a, b, c }, there are exactly three solutions for p...

4개월 전

문제를 풀었습니다


Is the Point in a Triangle?
Check whether a point or multiple points is/are in a triangle with three corners Points = [x, y]; Triangle = [x1, y1; x2, y...

4개월 전

문제를 풀었습니다


Find similar sequences
Another problem inspired by a question on the <http://www.mathworks.com/matlabcentral/answers answers> forum. Given a matrix ...

5개월 전

문제를 풀었습니다


Generate Square Wave
Generate a square wave of desired length, number of complete cycles and duty cycle. Here, duty cycle is defined as the fraction ...

5개월 전

문제를 풀었습니다


Pi Digit Probability
Assume that the next digit of pi constant is determined by the historical digit distribution. What is the probability of next di...

5개월 전

문제를 풀었습니다


Rosenbrock's Banana Function and its derivatives
Write a function to return the value of <http://en.wikipedia.org/wiki/Rosenbrock_function Rosenbrock's two-dimensional banana fu...

5개월 전

문제를 풀었습니다


Longest run of consecutive numbers
Given a vector a, find the number(s) that is/are repeated consecutively most often. For example, if you have a = [1 2 2 2 1 ...

5개월 전

문제를 풀었습니다


Nilpotent matrix
Check if matrix A is <http://mathworks.com/ nilpotent>.

대략 1년 전

문제를 풀었습니다


Given a number N, find the smallest prime P>N
Given a number N, find the smallest prime P greater than N. For example: If N=10 then P=11. If N=13 then P=17.

대략 1년 전

문제를 풀었습니다


area of an annulus
Given the diameter d of the inner circle of the annulus. Given length z of a chord of the outer circle of the annulus. This chor...

대략 1년 전

문제를 풀었습니다


subtract central cross
Given an n-by-n square matrix, where n is an odd number, return the matrix without the central row and the central column.

대략 1년 전

질문


Andrica's Conjecture
I'd like to get a simple MATLAB code showing the Andrica's conjecture. More about it can be found here: Andrica's conjecture - ...

대략 1년 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


Sum sum!!!
Sum the numbers from 1 to n

1년 초과 전

문제를 풀었습니다


Calculate compression ratio of engine
Calculate compression ratio of engine given compression volume of cylinder(Vc), piston stroke(s) and valve diameter(d)

1년 초과 전

문제를 풀었습니다


Calculate Engine Power
Calculate Engine Power (P) in kW given the values of Torque(M) in Nm and Engine Speed(n) in rpm

1년 초과 전

문제를 풀었습니다


Remove all the columns contains only zero
Remove the column from the matrix which has only zeros . Refer the Example below a= 1 0 3 0 23 0 56 0 1 ...

1년 초과 전

문제를 풀었습니다


Remove a specific column with min value
Remove the column that contain the min value in the matrix? If you like the problem, please give it a like:)

1년 초과 전

문제를 풀었습니다


Remove a specific column with max value
Remove the column that contain the max value in the matrix? If you like the problem, please give it a like:)

1년 초과 전

문제를 풀었습니다


Remove a specific row with min value
Remove the row that contain the min value in the matrix? If you like the problem, please give it a like:)

1년 초과 전

문제를 풀었습니다


Remove a specific row with max value
Remove the row that contain the max value in the matrix? If you like the problem, please like it :)

1년 초과 전

더 보기