Risolto


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

oltre un anno fa

Risolto


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....

oltre un anno fa

Risolto


Return the first and last characters of a character array
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

oltre un anno fa

Risolto


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

oltre un anno fa

Risolto


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

oltre un anno fa

Risolto


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2 3 3 3 4...

oltre un anno fa

Risolto


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

oltre un anno fa

Risolto


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

oltre un anno fa

Risolto


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

oltre un anno fa

Risolto


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.

oltre un anno fa

Risolto


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

oltre un anno fa

Risolto


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

oltre un anno fa

Risolto


Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...

oltre un anno fa

Risolto


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

oltre un anno fa

Risolto


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...

oltre un anno fa

Risolto


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

oltre un anno fa

Risolto


Return area of square
Side of square=input=a Area=output=b

oltre un anno fa

Risolto


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

oltre un anno fa

Risolto


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

oltre un anno fa

Risolto


Octoberfest festival
A group of students decided to visit Octoberfest festival. First they ordered one beer, then after half-hour they taken one more...

oltre un anno fa

Risolto


Predicting life and death of a memory-less light bulb
*&#128161 &#128161 &#128161 &#128161 &#128161 &#128161 &#128161 &#128161 &#128161 &#128161 &#128161 &#128161 &#128161 &#128161 &...

oltre un anno fa

Risposto
How do I send serial commands to a device with Simulink Real Time?
Hi Dan, What kind of cable are you using to test this loopback model? Please note that a null-modem cable (or adaptor) must be ...

oltre un anno fa | 0

Risposto
How do i save a file into a folder in a different path?
Hi Rachel, That should be fairly straightforward. You can create: a new directory each iteration of the 'for' loop, and save y...

oltre un anno fa | 1

Risposto
How to export trained RL agent to TwinCat machine learning inference
Hi Chetan, In case you'd like to deploy your algorithm on a real-time target machine that specifically uses Simulink Real-Time ...

oltre un anno fa | 0

| accettato

Risposto
Delete application on target computer programmatically
Hi Matteo, The function "removeApplication" was introduced for that purpose in MATLAB R2022a. Furthermore, the function "remove...

oltre un anno fa | 0

| accettato

Risposto
Why I can not save all the simulation data using to workspace in simulink's external mode?
Hello Amina, I do not recommend using the "To Workspace" block to log data in Simulink Real-Time. If you're using MATLAB R2020a...

oltre un anno fa | 0

Risposto
Variable Length Windows Real-Time Target UDP Receive Block
Hi Arne, That should be possible in my opinion. I would define the maximum expected size in your UDP receive block, and then di...

oltre un anno fa | 0

Risposto
If development computer is target computer, how can I built the connection?
Hi Wilson, You must have two separate devices to use Simulink Real-Time: one host/development PC, and one target machine. Best...

oltre un anno fa | 0

Risposto
Can I connect Simulink Version 2022a to a Non-Speedgoat Target Machine?
Hi Kyle, I'm afraid that's not possible: only Speedgoat target machines are supported by Simulink Real-Time since R2018a. Kind...

oltre un anno fa | 1

| accettato

Risposto
Get 1st element/reading from a Real-time encoder readings
Hi Ahmet, How about using a block-based approach instead? You could for example go for something similar to this: In this ...

quasi 2 anni fa | 0

| accettato

Carica altro