Answered
How to export a simulink project (Not single model) to older version 2019a from newer version 2019b?/
Simulink Project won't export previous version now. This is Simulink Project limitation

4 years ago | 0

| accepted

Answered
HDL coder mapping error
I look like you are using the ISE web pack. The web pack does not support xc6vlx240t. web pack supports only xclx75T. If you use...

4 years ago | 0

Solved


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

4 years ago

Answered
Simulink Model stuck in running mode indefinitely
@ADITYA You can use color space convesion block. I attached simple example model. Regards, stozaki

4 years ago | 0

Answered
How to create a buffer FIFO, filter and then save in an array values that are between an specific range of values?
I attached modified model you made. unbuffer is just for the description of the block. It is arranged to explain the difference...

4 years ago | 0

| accepted

Problem


Find the index of elements in a string vector
In the vector of v, find the index of elements specified by a. v = ["Lion","Koara","Elephant","Snake","Dog","Cat","Camel"]; ...

4 years ago | 1 | 32 solvers

Answered
Comparing and locating string values
Please try following command. ret = find(ismember(x,a)) ismember find

4 years ago | 1

| accepted

Solved


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

4 years ago

Answered
How to set output of MATLAB function block as fixed size?
* I attached model and Signal Object file. There are two ways. Set the dimensions in the properties of the output signal. U...

4 years ago | 1

Answered
How can I convert douvle value to int or Integer?
If you convert from double to int32, you can use int32 function. It work casting as int32. intnum = int32(num); int32 int16 ...

4 years ago | 0

Answered
Turn off a Signal for a few seconds and then turning it back on
I attached example model. But it is created by R2019a and backport to R2013b.

4 years ago | 0

| accepted

Answered
Simulink ブロックのすべてのハイライトをクリアする
sugimoto様 対象がモデル内の全ブロックと仮定します。 blk = find_system(bdroot(gcs),'type','block'); % モデル内のブロックをリストします for n = 1:length(blk) % 取得...

4 years ago | 1

Answered
Changing text of subsystem according to textbox
I attached sample model. If you use get_param and disp function, you can use it. for example Gain value of Gain block. v = ge...

4 years ago | 1

| accepted

Answered
Scope not working properly (ie im not getting a straight line if i use const value for a period of time)
This problem is setting of constant block. When sample period of constant block is set 'inf' and constant block only connect to ...

4 years ago | 2

Answered
Simulink library takes more time to open -2016B
You can customize simulink library browser. I attached example script. You can limit the ToolBoxes displayed in the library brow...

4 years ago | 0

| accepted

Answered
Constant input as "iteration limit" for "for loop iterator" block
I attached example model. Please try to use it.

4 years ago | 2

| accepted

Answered
Vector and matrix average
a=[2.4,2,3.4,4.5,5.63]; ave_a = mean(a);

4 years ago | 0

Answered
Solver error in HDL verifier
When you generate and simulation to use the HDL coder, SolverType must set Fixed-Step. Please see following URL HDL Coder cu...

4 years ago | 0

Solved


Bit Reversal
Given an unsigned integer _x_, convert it to binary with _n_ bits, reverse the order of the bits, and convert it back to an inte...

4 years ago

Solved


Create a vector
Create a vector from 0 to n by intervals of 2.

4 years ago

Solved


英語の文章内の母音を取り除くコードを書きましょう。
与えられた英語の文章内の母音を取り除きましょう。 例: 入力 s1 が 'Jack and Jill went up the hill' の場合、 出力 s2 は 'Jck nd Jll wnt p th hll' * (英語版) ...

4 years ago

Answered
how to change the integrator initial conditions?
Hello, ret = find_system(bdroot(gcs),'BlockType','Integrator') for N = 1:length(ret) set_param(ret{N},'InitialCondition...

4 years ago | 0

Solved


行列内の素数の平均をとろう
行列が与えられたときに、その行列内の素数の平均を計算する関数を作成しましょう。 例: 入力の行列が in = [ 8 3            5 9 ] のとき、 出力が 4 あるいは (3+5)/2 のようになり...

4 years ago

Solved


サイコロを作ろう
1から6までの独立かつランダムな数値を返すような関数を作成しましょう。 例: >> [x1,x2] = rollDice(); と入力すると x1 = 5 x2 = 2 のような解を返します。

4 years ago

Solved


二つのベクトルの要素ごとの積の平均を計算しよう
二つの同じ長さのベクトルが与えられたとき、二つのベクトルの要素ごとの積の平均を求めましょう。 例: 二つのベクトル [1 2 3] と [10 15 20] が与えられたとき、 それぞれの要素ごとの積の平均を取ると、 解は 33.33...

4 years ago

Solved


NaN (欠損値) が含まれている行を削除しよう
行列 A が与えられたとき、その行列の中に NaN (Not a number; 欠損値) の要素がある行を見つけ出し、その行を削除しましょう。 例: A = [ 1 5 8 -3 NaN 14 ...

4 years ago

Solved


特定の値がベクトル内に含まれているかを確認するコードを書こう
ベクトル b にあるスカラ値 a が含まれていれば出力として 1 を返し、含まれていなければ 0 を返すような関数を作成しましょう。 例: a = 3; b = [1,2,4]; スカラ値 3 はベクトル b に含まれていない...

4 years ago

Solved


ゼロでない要素が一番多い行を探そう
行列 a が与えられたとき、行列 a の中で一番ゼロの要素が少ない行のインデクス r を返す関数を作成しましょう。このとき、行列 a には一つだけしかこの条件に当てはまる行がないと仮定します。 例: 入力として、行列 a = [ 1 ...

4 years ago

Solved


文字列の最初と最後の文字だけ抜き出しましょう。
文字列の最初と最後の文字をつなげて返すような関数を作成しましょう。 もし文字が一つしかない場合、その文字は最初と最後の文字のため、関数はその文字を二回返すようにしておきましょう。 例: stringfirstandlast('borin...

4 years ago

Load more