Monika Jaskolka - MATLAB Central
photo

Monika Jaskolka


Last seen: 約1ヶ月 前 2014 年からアクティブ

Followers: 1   Following: 0

Programming Languages:
C, MATLAB
Spoken Languages:
English

統計

All
MATLAB AnswersFile ExchangeFrom 09/14 to 04/25Use left and right arrows to move selectionFrom 09/14Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

38 質問
88 回答

File Exchange

5 ファイル

ランク
378
of 297,972

評判
217

コントリビューション
38 質問
88 回答

回答採用率
81.58%

獲得投票数
48

ランク
7,527 of 20,514

評判
127

平均評価
5.00

コントリビューション
5 ファイル

ダウンロード
12

ALL TIME ダウンロード
938

ランク

of 159,989

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • 5-Star Galaxy Level 3
  • Thankful Level 4
  • 6 Month Streak
  • Knowledgeable Level 4
  • Personal Best Downloads Level 2
  • GitHub Submissions Level 2
  • Revival Level 3
  • First Review
  • First Submission
  • First Answer

バッジを表示

Feeds

表示方法

質問


How to programmatically determine if a Simulink model represents an AUTOSAR software component or composition?
In AUTOSAR, we have ARXMLs that can be either for a Software Component (SWC) or a grouping of SWCs called a composition. In both...

2年以上 前 | 1 件の回答 | 0

1

回答

質問


How to highlight multiple Stateflow objects
I would like to highlight multiple objects in a Stateflow chart. I can use the highlight function to highlight one object, howev...

約3年 前 | 1 件の回答 | 0

1

回答

質問


Check if object's property is empty
I have an xmlcomp.Edits object that was created when performing a comparison via the command root = slxmlcomp.compare(...) In ...

約3年 前 | 1 件の回答 | 1

1

回答

回答済み
How to retrieve the Inport names/labels of a Stateflow chart?
I'm not sure what the InputSignalNames parameter is used for and there is little information about it in the Simulink documentat...

約3年 前 | 2

| 採用済み

回答済み
clear persistent variable in subfunctions
"MATLAB clears persistent variables when you clear or modify a function that is in memory. " https://www.mathworks.com/help/mat...

3年以上 前 | 0

回答済み
Align simulink blocks to top left of the window
As far as I am aware, the zooming function is not able to zoom to align blocks on the top left. The ZoomFactor parameter only ha...

3年以上 前 | 0

回答済み
why xlswrite has @ character?
This is something that happens automatically in Excel. Please see: https://www.mrexcel.com/board/threads/ampersands-appearing-i...

3年以上 前 | 3

| 採用済み

回答済み
How to save data value in new row ?
data = [471 578 518 270 1102 471 512 630 561 293 1165 511 629 559 292 1162 511 509 627 558 292 1159]; reshape(data, [11,2])'

3年以上 前 | 0

| 採用済み

回答済み
CREATING A LOOP FROM DATA
n = 22; B = rand(10,n); C = rand(n,1); D = rand(n,1); A = zeros(size(B)); for i = 1:n A(:,i) = (B(:,i) - C(i))/ D(i)...

3年以上 前 | 0

質問


Find files according to a pattern that are on the Matlab path?
Let's say I have 2 folders of generated code. One is on my Matlab path, and one is not. I would like to find all C header files ...

3年以上 前 | 1 件の回答 | 0

1

回答

回答済み
Cannot delete PID block
It looks like the DeleteFcn in 2016 was pidpack.PIDConfig.closeTuner(gcbh) while in 2019 it is pidpack.PIDConfig.utilcloseTuner(...

3年以上 前 | 2

| 採用済み

回答済み
How do I check if two files are different programmatically?
I ended up using the diff command via system: [~, result] = system(['diff ''', file1, ''' ''', file2, '''']); When the result ...

3年以上 前 | 0

| 採用済み

質問


How do I check if two files are different programmatically?
Given two files of the same type (e.g., .m, .xlsx, .fig), I'd like to compare them to check if they are the same or not. How can...

3年以上 前 | 1 件の回答 | 0

1

回答

回答済み
How to add application information using mcc?
This will change the icon and version number: mcc -m -r ./iconFile.ico appName.m -W 'main:appName,version=3.2.1' I am still un...

3年以上 前 | 0

回答済み
Matlab can't find my file .m
It looks like the filename of sampling_theory has an extra space at the end. Try renaming the file from "sampling_theory .m" to ...

3年以上 前 | 1

| 採用済み

質問


How do I search a Simulink model for a string in all element properties?
I want to programmatically search for a string in a model such that the results match the usual GUI Finder (Ctrl+F), that is, it...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


Convert Subsystem into Referenced Subsystem programmatically?
If I right-click on a subsystem, I can select Subsystem & Model Reference > Convert to > Referenced Subsystem …, press OK, and ...

3年以上 前 | 1 件の回答 | 1

1

回答

質問


How to add application information using mcc?
When using the applicationCompiler GUI, it is possible to enter the application icon, version, author, email, company, etc. as s...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


How to build a standalone application programmatically in R2019a?
In the current MATLAB Compiler documentation there is a section on how to "Create Standalone Application Using Application Compi...

3年以上 前 | 1 件の回答 | 0

1

回答

回答済み
split cell in 2 columns
A = {0,0,[35.1600000000000,35.1600000000000],0,0,35.1600000000000, ... 0,0,[35.8200000000000,35.8200000000000],0,0,35.82000...

3年以上 前 | 0

| 採用済み

回答済み
excel if statement to matlab
I don't see that a "double if" is necessary: x = 0; if (~E5 && E4) x = F4 + 1; else x = F4; end If you are as...

3年以上 前 | 0

| 採用済み

回答済み
How to .txt or .rcmp file data with separated by colon?
>> fileread('test.txt') ans = '11 0 1 1 0 0 0 0 0 4 1:2 1:3 1:4 1:5 2 1 2 0 2 2:6 2:7 ...

3年以上 前 | 0

| 採用済み

回答済み
Output Simulink model (2009 verison) in Simulink/matlab 2021a
Use the command Simulink.exportToVersion to export to previous versions. exported_model = Simulink.exportToVersion(gcs, 'model_...

3年以上 前 | 0

| 採用済み

回答済み
Regarding sldiagnostics function usage and results
In the description of sldiagnostics it says that it also follows links, so your command should be: find_system(gcs, 'LookUnderM...

4年弱 前 | 0

| 採用済み

回答済み
How can I read a ".dat" and ".hea" file in to MATLAB?
To import dat files I use the mdfimport tool found on the Matab File Exchange

4年弱 前 | 0

回答済み
is it possible to reference a port name instead of number for add_line()?
No, this is not possible. The function add_line can currently only be used by providing the port handles or points.

4年弱 前 | 0

質問


How to create a time varying constant?
I have data that I logged from my Simulink model using ToWorkspace blocks. This data is in the usual [Time, Data] format and a s...

4年弱 前 | 2 件の回答 | 0

2

回答

回答済み
Is it possible to eliminate the BlockIO contents when generating code?
You probably have to change your model configurations so that code generation makes these changes: https://www.mathworks.com/he...

4年弱 前 | 0

| 採用済み

回答済み
Is it possible to copy an entire area from one simulink model to another?
Simulink.SubSystem.copyContentsToBlockDiagram might be what you are looking for. https://www.mathworks.com/help/simulink/slref/...

4年弱 前 | 0

回答済み
I need to run this python code in MATLAB. Can anyone guide me, please?
Perhaps some previous answers can help you: https://www.mathworks.com/matlabcentral/answers/416129-how-to-convert-python-code-i...

4年弱 前 | 0

さらに読み込む