Community Profile

photo

Matteo Pellegri


Last seen: Today Active since 2020

Statistics

All
  • Thankful Level 2
  • First Review
  • Knowledgeable Level 2
  • First Answer
  • Leader
  • Community Group Solver
  • Commenter
  • Promoter
  • Solver

View badges

Content Feed

View by

Question


I cannot edit shortcuts in projects
I am currently unable to change the file associated to a specific shortcut created in projects (Project Shortcuts tab). This ...

2 months ago | 1 answer | 0

1

answer

Answered
Real-Time App Target Selector won't update the target to the selected one
I solved this by creating a start-up function and adding it to the components events callbacks % Code that executes after compo...

5 months ago | 0

| accepted

Question


Real-Time App Target Selector won't update the target to the selected one
Hi, I just started using the pre-made App components for the real time library in R2022b. In the past I made my own Target sele...

5 months ago | 1 answer | 0

1

answer

Question


Include notes from library blocks in report generator
I am currently using this approach to generate a report of a simulink model programmatically. https://uk.mathworks.com/help/rpt...

6 months ago | 1 answer | 0

1

answer

Question


Delete application on target computer programmatically
Hello, I am trying to delete an application on my target machine (SpeedGoat) programmatically. I am essentially trying to repli...

2 years ago | 1 answer | 0

1

answer

Question


Simulink Real-Time 2020b. How do I monitor/log a signal in my application using App Designer?
Hi, I am trying to monitor a signal in my real-time application on Speedgoat using App Designer. I am trying to recreate a sim...

2 years ago | 1 answer | 1

1

answer

Question


How to programmatically get tunable parameters from real time application.
Hello everyone, I recently started using Matlab 2020b real-time on a SpeedGoat target. In the past, I used an external applicat...

2 years ago | 1 answer | 0

1

answer

Solved


Back to basics 21 - Matrix replicating
Covering some basic topics I haven't seen elsewhere on Cody. Given an input matrix, generate an output matrix that consists o...

3 years ago

Solved


Function Iterator
Given a handle fh to a function which takes a scalar input and returns a scalar output and an integer n >= 1, return a handle f...

3 years ago

Solved


Find relatively common elements in matrix rows
You want to find all elements that exist in greater than 50% of the rows in the matrix. For example, given A = 1 2 3 5 ...

3 years ago

Solved


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

3 years ago

Solved


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

3 years ago

Solved


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

3 years ago

Solved


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

3 years ago

Solved


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

3 years ago

Solved


Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of <http://en.wikipedia.org/wiki/Pascals_t...

3 years ago

Solved


Return a list sorted by number of occurrences
Given a vector x, return a vector y of the unique values in x sorted by the number of occurrences in x. Ties are resolved by a ...

3 years ago

Solved


Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...

3 years ago

Solved


Reverse Run-Length Encoder
Given a "counting sequence" vector x, construct the original sequence y. A counting sequence is formed by "counting" the entrie...

3 years ago

Solved


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

3 years ago

Solved


Find the alphabetic word product
If the input string s is a word like 'hello', then the output word product p is a number based on the correspondence a=1, b=2, ....

3 years ago

Solved


Subset Sum
Given a vector v of integers and an integer n, return the the indices of v (as a row vector in ascending order) that sum to n. I...

3 years ago

Solved


Trimming Spaces
Given a string, remove all leading and trailing spaces (where space is defined as ASCII 32). Input a = ' singular value deco...

3 years ago

Solved


Make a Palindrome Number
Some numbers like 323 are palindromes. Other numbers like 124 are not. But look what happens when we add that number to a revers...

3 years ago

Solved


Which doors are open?
There are n doors in an alley. Initially they are all shut. You have been tasked to go down the alley n times, and open/shut the...

3 years ago

Solved


Extract leading non-zero digit
<http://en.wikipedia.org/wiki/Benford%27s_law Benford's Law> states that the distribution of leading digits is not random. This...

3 years ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

3 years ago

Solved


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

3 years ago

Solved


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

3 years ago

Solved


Making change
Given an amount of currency, return a vector of this form: [100 50 20 10 5 2 1 0.5 0.25 0.1 0.05 0.01] Example: Input a = ...

3 years ago

Load more