回答済み
How to fill in Sine Wave Block
Hello Huy Truong Tan Gia, The block dialog contains the definition of the sine function. (Red frame) For example, if the sam...

約4年 前 | 0

| 採用済み

回答済み
How to use while true loop for this qustion?
Hello Here is an example of calculation % Define the value of F used in the calculation as a "vector". F = [70 80 75 84 92...

約4年 前 | 0

回答済み
subscript that is out of range?
Hello Rajeev, The variable "P" is undefined in your Fcn block. Define the value of the variable "P". Regards, stozaki

約4年 前 | 0

| 採用済み

回答済み
対数計算時のエラー
坂本様 コマンドの実行ありがとうございました。 ca1のクラスが "int16"となっています。log関数のドキュメントを見ると、入力引数のデータ型は "single" もしくは "double" となっています。従って、"int16"のデータ型は...

約4年 前 | 0

| 採用済み

回答済み
Silmulink入​門トレーニングタスク​7.1MATLABワ​ークスペース変数につ​いて
木本 達也 様 ご質問を頂きました件ですが、手元で同様の現象を確認しました。 結論を先に申しますと、トレーニングタスクペイン(左側のペイン) の説明文が明確では無く、誤った操作へ誘導してしまっているように見えます。 貴重なお時間をお掛けし、申し訳...

約4年 前 | 0

回答済み
What is the name of this block?
Hello RIFAT ONGUN, Its block type looks like "HitCross". If you want to find out the block type, select the block with the mou...

約4年 前 | 0

回答済み
Why is simulink model called with an invalid flag?
Hello Seunguk, If you call a function, you need to use variables in the function workspace. ret = mdlname(0.14, 0.35, 1000000,...

約4年 前 | 0

| 採用済み

回答済み
does not resolve to a valid data type for parameter "OutDataTypeStr"
Hello wrest12, I think you haven't created a bus object named abc. If I don't define a bus object, I've detected the same error...

約4年 前 | 0

回答済み
islocalmin関数のC/C++ コード生成
Kohin Shu 様 コード生成には、MATLAB Coderを使用します。使用手順はMATLAB Coder アプリを使用した C コードの生成 記載の手順がわかりやすいかと思いますので参考にしてください。 islocalmin 関数はドキュメ...

約4年 前 | 0

回答済み
How can i erase the word "out." at the beginning of the variable name in block "to workspace"
Hello David, The default configuration settings are to save to a single Simulink.SimulationOutput object. The script to cance...

約4年 前 | 3

| 採用済み

回答済み
MATLABコマンドラインから印刷フレームを使用してsimulinkモデルブロック図を印刷することはできますか
yusuke endo 様 モデル参照毎のブロック線図に対して1枚のpdfファイルを生成するプログラムを考えてみました。 R2020aの環境を使用し、手元では期待されるpdfファイルが出力されることを確認しております。 2通りの方法が考えられたの...

約4年 前 | 0

| 採用済み

回答済み
Can I uninstall my older versions of MATLAB and still have working newest MATLAB version?
Hello Katarina, Yes it works. Below is a similar answer Will Matlab 2017b work without Matlab 2017a? stozaki

約4年 前 | 0

回答済み
I cannot see the linear analysis menu in R2019b
Hello James, Since MATLAB R2019b, Simulink Toolstrip has been adopted instead of Simulink Menu. Simulink Toolstrip > APPS ta...

約4年 前 | 1

| 採用済み

回答済み
How to set 1D Table characteristics from script
Hello Lila, If the block path (character) or block handle (numerical value) of the target 1D LookupTable block is "blkName" ,...

約4年 前 | 0

| 採用済み

回答済み
sim関数のMATLAB 式を評価するワークスペースについて
KO様 sim が記述される関数が呼び出される”親となる関数”のワークスペースが、"parent" となります。 シンプルな具体例としては次のような形となります。(AはSimulinkモデルで使用されていて、ベースワークスペースで定義されていないパ...

約4年 前 | 0

| 採用済み

回答済み
My Simple model does not run when my time is set to 10 seconds
Hello Jorje, Probably because the sample time value in your constant block is the default value. The constant block sample t...

約4年 前 | 0

| 採用済み

回答済み
download file from a url
Hello Xuewei, Your script seems to have invalid websave arguments. Please try following script. websave('xxx.csv','https://...

約4年 前 | 0

| 採用済み

回答済み
Simulink Plot from Command Window
Hello Aaron, Please try as follows. % execute model simulation and store the result in y. y = sim('HW1_number10'); % acqui...

約4年 前 | 0

| 採用済み

回答済み
ライセンス番号の取得方法
鶴﨑さん ライセンス番号を取得するには licence という関数を使用します。 MATLABを起動するとコマンドウィンドウというプログラムを入力・実行するペインがあります。 コマンドウィンドウでlicence関数を実行するには、次のように行いま...

約4年 前 | 1

回答済み
Add value to previous value while using a for loop
Hello Vance, Try adding the following to your script. COMTOT is the cumulative sum. COMTOTALL = cumsum(CoM_tot); COMTOT = C...

約4年 前 | 0

回答済み
テストハーネスを使用するために必要なライセンスをご教示ください。
michihiroさん Simulink Test のLicenceが追加で必要となります。 手元でSimulinkモデルのメニューからテストハーネスを選択し、テストハーネスを作成時に使用したLicenceを以下のコマンドで確認しました。matla...

約4年 前 | 0

回答済み
evalin data dictionary design data unable to use parameters on rhs of expression
The "evalin" function for data dictionary section does not support the expressions. The workaround can be replaced by the follo...

約4年 前 | 0

回答済み
Get expected DataType for Inherit:auto port
Hello Iliya, Simulink blocks output data type are determined when you compile your model. To get the data type property at t...

4年以上 前 | 0

| 採用済み

回答済み
Read and save multiple excel files into one spreadsheet in one excel file
Hello addy, I attach a simple sample script. Please save all files in the same folder and run the script. Regards, stoza...

4年以上 前 | 0

| 採用済み

回答済み
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

| 採用済み

回答済み
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

回答済み
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

さらに読み込む