Community Profile

photo

Dimitri MANKOV


Last seen: 1日 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

All
  • 24 Month Streak
  • Speed Demon
  • Promoter
  • Community Group Solver
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Knowledgeable Level 4
  • First Review
  • Revival Level 3
  • MATLAB Central Treasure Hunt Finisher
  • Solver
  • First Answer

バッジを表示

Feeds

表示方法

回答済み
Real Time Robotic Arm
Hello Ceren, One possible approach would be to look into the Simulink Real-Time toolbox, which would allow you to deploy your S...

17日 前 | 0

回答済み
Simulink Real Time External Mode Requirements
Hi Diede, For the Host PC, the system requirements can be found for every MATLAB release here. Note that these are minimal requ...

約2ヶ月 前 | 0

回答済み
Hold signal value in after a trigger then resume with the rest of the signal
Hi Yan, What about a triggered subsystem containing your counter, like in the picture below? That counter would only be increme...

3ヶ月 前 | 0

回答済み
Error message when running simulink real-time with Speedgoat
Hi Jeseong, Looks like your target machine crashed. Not sure if this will work on a release as old as R2015b, but in R2020a and...

3ヶ月 前 | 0

回答済み
Simulink Real-Time UDP block vs Instrumentation Toolbox UDP block
Hi Cheng, It depends: do you intend to run your Simulink model on an external target machine, or on your development PC? If you...

4ヶ月 前 | 0

| 採用済み

回答済み
issues about RateTransition block when performed serial communiction on Speedgoat
Hi Yunchao, Could you open the Diagnostic Viewer on the bottom of your Simulink model, and select the correct log (Build) as sh...

4ヶ月 前 | 1

回答済み
XPC trigger model run
Hi Istvan, In MATLAB R2020a or earlier, you can use the "IRQ Source" block to trigger a subsystem of your Simulink model asynch...

5ヶ月 前 | 0

| 採用済み

回答済み
Can't send multiple CAN FD messages with 1 send block on Speedgoat
Hi Szilard, Could you try using a "Vector Concatenate" block instead of a "Mux" block to pass several CAN-FD messages to the "C...

5ヶ月 前 | 0

| 採用済み

回答済み
Using Simulink RT on development laptop to communicate with Beckhoff EK1100 module
Hi Thomas, I'm afraid the EtherCAT blocks from the Simulink Real-Time library will not work on your desktop computer: Simulink ...

5ヶ月 前 | 0

| 採用済み

回答済み
how to learn Hardware-in-loop testing ?
Hi, The MathWorks offer a great course about Simulink Real-Time that covers the topic of HIL testing, check it out here: https...

7ヶ月 前 | 0

| 採用済み

回答済み
Signals with Fixed-Point data types in Simulink Real-Time
Hi Francesca, Which MATLAB release are you using? The documentation you are referencing applies to R2023b, but I see that you e...

7ヶ月 前 | 0

回答済み
time-triggered CAN simulation
Hi Ruoshi, There are several approaches to real-time simulation, including Simulink Real-Time and Simulink Desktop Real-Time. W...

8ヶ月 前 | 0

回答済み
Serial and Ethernet connection for xpc target
Hi Le, I'f you'd like to send data over the serial / COM port of your target machine, you can use the RS-232 blocks from the xP...

8ヶ月 前 | 0

回答済み
How to change block sample time using a trigger
Hi Thomas, I would simply move the TCP Send block inside of the triggered / enabled subsystem, this should do the trick :) Bes...

8ヶ月 前 | 0

| 採用済み

回答済み
Speedgoat Hardware for noise control
Hi Russ, The hardware used in this example is a Speedgoat Performance tagret machine with an IO104 module. Speedgoat offers a w...

8ヶ月 前 | 0

| 採用済み

回答済み
TCP/IP Connection xPC Target with remote device
Hi Tobias, You can use the TCP/IP driver blocks from the Simulink Real-Time library in the model that you deploy to your target...

9ヶ月 前 | 0

解決済み


De-dupe
Remove all the redundant elements in a vector, but keep the first occurrence of each value in its original location. So if a =...

9ヶ月 前

解決済み


intersection of matrices
Given two matrices filled with ones and zeros, determine if they share a common row, column entry. These matrices are of identic...

9ヶ月 前

解決済み


First non-zero element in each column
For a given matrix, calculate the index of the first non-zero element in each column. Assuming a column with all elements zero i...

9ヶ月 前

解決済み


Remove the two elements next to NaN value
The aim is to *remove the two elements next to NaN values* inside a vector. For example: x = [6 10 5 8 9 NaN 23 9 7 3 21 ...

9ヶ月 前

解決済み


Set the array elements whose value is 13 to 0
Input A either an array or a vector (which can be empty) Output B will be the same size as A . All elements of A equal to 13...

9ヶ月 前

解決済み


Get the elements of diagonal and antidiagonal for any m-by-n matrix
In the problem <http://www.mathworks.com/matlabcentral/cody/problems/858-permute-diagonal-and-antidiagonal Problem 858. Permute ...

9ヶ月 前

解決済み


Generate N equally spaced intervals between -L and L
Given N and L, return a list of numbers (in ascending order) that divides the interval [-L L] into N equal-length segments. For...

9ヶ月 前

解決済み


Return unique values without sorting
If the input vector A is [42 1 1], the output value B must be the unique values [42 1] The values of B are in the same order a...

9ヶ月 前

解決済み


Find the largest value in the 3D matrix
Given a 3D matrix A, find the largest value. Example >> A = 1:9; >> A = reshape(A,[3 1 3]); >> islargest(A) a...

9ヶ月 前

解決済み


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

10ヶ月 前

解決済み


Inner product of two vectors
Find the inner product of two vectors.

10ヶ月 前

解決済み


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

10ヶ月 前

解決済み


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

10ヶ月 前

解決済み


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

10ヶ月 前

さらに読み込む