Resuelto


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

más de 4 años hace

Respondida
How to use linspec
n = 9 when user want to generate integer cases of x in [-4, 4] if n = 1, so x alway = 4, it is no meaning

más de 4 años hace | 0

Respondida
how can I read different data types from excel file
You also use readtable function data = readtable(FILE,'Sheet', 'sheet_name', 'ReadVariableNames', false);

más de 4 años hace | 0

Pregunta


Search subarray closest other array
Dear all I want to search subarray closest other array as following. A = [4, 5.5, 7, 8.1, 1, 5, 6, 7, 8, 9]; B = [5.5, 6.2, 7...

más de 4 años hace | 1 respuesta | 0

1

respuesta

Enviada


Limit_Input_Change
Make output slowly close input when input change very big.

más de 4 años hace | 1 descarga |

Thumbnail

Respondida
How to define a function with multiple names
As I know, you can't do it. You should create only 1 function and switch converting such as same following function out_val = ...

más de 4 años hace | 0

Respondida
Problem of comparison in Simulink Test Manager
I found problem. Time in baseline was not really right. Example: 3.0600000001 I fixed

más de 4 años hace | 0

| aceptada

Pregunta


Problem of comparison in Simulink Test Manager
Dear all, I created test cases for simulink test manager, but when I compare, result at one time was not same which as followin...

más de 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Signal did not align
I using Simulink test and add base line result from excel file. But signal compare dis not align as following picture. Do y...

más de 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How to know actived transition between states
Dear bros, As we know, we can view state activity by using the Simulation Data Inspector or Active State Data as following link...

más de 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Simulink Design Verifier Dead Logic
I used simulink design verifier to check my state machine model. And some dead logics are detected. Red line is dead logic,...

más de 4 años hace | 1 respuesta | 0

1

respuesta

Respondida
Help understanding example for Inlining Matlab S-function
You double click to Inport block, choose the Signal Attributes tab

más de 4 años hace | 0

| aceptada

Respondida
Prolemn with close Matlab folder
You need to check movefile function which you used is OK or NG Original, after cd command. 2. after use movefile 3. afte...

más de 4 años hace | 1

| aceptada

Respondida
User-defined function is "unrecognized" in command window.
You copy only print_list function to other file and save print_list.m in Matlab It will be OK

más de 4 años hace | 1

| aceptada

Respondida
Square wave to bits in Simulink
You can write waveform data to workspace via To Workspace block or Scope

más de 4 años hace | 0

Respondida
Write a for loop that iterates from 1 to numberSamples to double any element's value in dataSamples that is less than minValue. Ex: If minVal = 10, then dataSamples = [2, 12, 9, 20] becomes [4, 12, 18, 20].
Let's try minVal = 10; dataSamples = [2, 12, 9, 20]; dataSamples(find(dataSamples <= minVal)) = dataSamples(find(dataSamples...

más de 4 años hace | 0

Respondida
how to run multiple xlsx files once
You can use following steps: % select path work_path = uigetdir('pwd', 'Select folder'); % find all xlsx files in folder %...

más de 4 años hace | 0

Respondida
finding the position of values in a matrix
Try [~,idx]=setdiff(X,Y,'rows'); idx_rows=setdiff(1:size(X,1),idx); idx_rows = 2 3 4 6 7

más de 4 años hace | 0

Respondida
Getting particular number from 2 rows.
Let 's try a = {'Scenario_1_mode_1', 'Scenario_2_mode_1', 'Scenario_3_mode_1', 'Scenario_4_mode_1'}; a = a'; for i=1:lengt...

más de 4 años hace | 0

Respondida
how to select specific column and rows in excel
You can use readtable for import data from excel to MATLAB https://www.mathworks.com/help/matlab/import_export/read-spreadsheet...

más de 4 años hace | 0

Respondida
Extension change from .txt to .Z14
You can copy file as following file1='A.txt' file2=strrep(file1,'.txt','.Z14') copyfile(file1,file2)

más de 4 años hace | 1

| aceptada

Respondida
defining simulink variables through matlab srcript
You can create variables to workspace and in simulink, enable acess to base workspace. For create variables via script, let 's ...

más de 4 años hace | 0

Resuelto


Convert given decimal number to binary number.
Convert given decimal number to binary number. Example x=10, then answer must be 1010.

más de 4 años hace

Resuelto


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

más de 4 años hace

Respondida
I am trying to create a game where a user guesses a number between 1 and 100 using a while loop. But I am getting stuck in an infinite loop. Please help?
Let 's try y=randi(100); while (1) prompt= '\nguess a value between 1 and 100: '; x=input(prompt); if (...

más de 4 años hace | 2

Resuelto


Fibonacci-Sum of Squares
Given the Fibonacci sequence defined by the following recursive relation, * F(n) = F(n-1) + F(n-2) * where F(1) = 1 and F(1)...

más de 4 años hace

Resuelto


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

más de 4 años hace

Respondida
how to change the shape of Simulink Subsystem?
you mean that change mask of subsystem block, right? If it is right, you can right click to subsystem block, select Mask -> Cre...

más de 4 años hace | 0

Respondida
I wanted to combine these cells into a table.
Do it as following: load('matlab.mat'); out = cell2mat(new_raw(1,1)); for i=2:length(new_raw) out = horzcat(out, cell2ma...

más de 4 años hace | 0

| aceptada

Respondida
Access lower level fields in structure
Let 's try sm = table2array(cell2table(struct2cell(foo))); Wdata = [sm(:).W];

más de 4 años hace | 0

| aceptada

Cargar más