回答済み
Unable to add block in Simulink 2016 with add_block command
Hello Ruhi, Please try to edit line 7 as follows : Before : add_block('built-in/Inport', ['/Test' '/IN1'],'Position',[140 9...

4年以上 前 | 0

| 採用済み

回答済み
save workspace BUT with another name!
please refer an following URL save save filename save ('filename') For example, if you want to save it as 'test', you would ...

4年以上 前 | 1

| 採用済み

送信済み


SetInheritedPortName-Simulink-Utility
To set name of the port block and propagation signal name.

4年以上 前 | ダウンロード 1 件 |

解決済み


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

4年以上 前

解決済み


Find max
Find the maximum value of a given vector or matrix.

4年以上 前

回答済み
Local variable created as global in code.
In the flowchart, initialize as a condition action before the condition.

4年以上 前 | 0

回答済み
How to plot multiple graphs from Simulink in Matlab
The workspace stores only the latest results, but if you use the signal log, the Simulation data inspector stores all the result...

4年以上 前 | 0

解決済み


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

4年以上 前

回答済み
Problems encountered when converting simulink model including look-up table to hdl code
please try to use my modified model.

4年以上 前 | 1

| 採用済み

回答済み
Where is the declaration and definition of C code corresponding to min,max,abs blocks
math.h is standard library. So, mathematical functions are defined in math.h. https://en.wikipedia.org/wiki/C_mathematical_func...

4年以上 前 | 1

回答済み
Assign fields to structure array in Simulink
You can use MATLAB Function as following. I attached example model and .mat included struct data.

4年以上 前 | 0

| 採用済み

回答済み
How to round only two values after decimal point
You can use 'round' block and 'subtract' block.

4年以上 前 | 0

解決済み


Back to basics 3 - Temp Directory
Covering some basic topics I haven't seen elsewhere on Cody. Return a string that is the path to the system's current temp di...

4年以上 前

解決済み


Back to basics 15 - Benchmark
Covering some basic topics I haven't seen elsewhere on Cody. Return an array of the benchmark values for MATLAB.

4年以上 前

解決済み


Number of toolboxes?
Return a number equal to the number of toolboxes available to the Cody solvers.

4年以上 前

解決済み


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

4年以上 前

解決済み


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

4年以上 前

回答済み
Why is the data saved in a struct when 'To Workspace' block is used?
"ans" is most recent answer. ans "out" is simulation output (default setting of model configuration)

5年弱 前 | 0

| 採用済み

解決済み


Add two numbers
Add two numbers (For beginners)

5年弱 前

解決済み


Area of a triangle
A triangle is given with base *'b'* ,vertical hight *'h'* . then find it's area.

5年弱 前

回答済み
how do I compare simulink data dictionaries
Please try following script. Unzip attached file. execute the script. visdiff('dd1.sldd','dd2.sldd') For simple file differe...

5年弱 前 | 1

回答済み
Simulink cache file won't open
That is the correct behavior. .slxc files are Simulink cache files. These files contain build artifacts that can speed up simul...

5年弱 前 | 0

| 採用済み

回答済み
Modifying my fprintf code.
Please execute following script. for n=9:-1:2 theta=pi./n; solution=cos(theta); fprintf('cos(pi/%d) = %7.5f\n',n...

5年弱 前 | 0

回答済み
Where is the declaration and definition of C code corresponding to min,max,abs blocks
For example, min block generate model.c and model.h. math.h is included in model.h

5年弱 前 | 0

回答済み
Can anyone help me how many color representation are there in simulink?
It may have 16,777,216. Because There are 256 color settings for each of RGB.

5年弱 前 | 0

回答済み
Pointer to Simulink Function
I attahced example model, hedder and souce C file. Please try to simulate there. Call C Library Functions in C Charts

5年弱 前 | 0

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

5年弱 前

回答済み
ブロックの背景色一括変更
Yamazaki様 以下の様なプログラムは如何でしょうか? ret = find_system(bdroot(gcs),'BlockType','Goto'); % モデル内からGotoブロックをリストする for N = 1:length(...

5年弱 前 | 0

| 採用済み

解決済み


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

5年弱 前

回答済み
Simulink/StateFlowにおけるバス信号への値の代入について
Atomi様 Stateflowの 場合を添付の例題モデルとして示します。(R2019bにて作成) バス信号を使うためには、先ずバスオブジェクトを定義して下さい。その定義したバス要素に代入する形でモデリング・シミュレーション出来ます。(myBus....

5年弱 前 | 1

さらに読み込む