Community Profile

photo

Mario Malic


Looking for opportunities

Last seen: Today Con actividad desde 2019

Followers: 0   Following: 0

Contacto

Still discovering things I like doing! Experience with: Developing applications with MATLAB, automating workflows through APIs or scripts (pre- and post-processing in FEA, CAD), NVH measurements and analysis, Building helpful gadgets with 3D printing

Programming Languages:
Python, C, MATLAB, Visual Basic
Spoken Languages:
English
Pronouns:
No pronouns - Use my name only
Professional Interests:
App Building, Signal Processing, Measurements and Testbenches, Automation Scripting, Finite Element Analysis (FEA)

Estadísticas

All
  • MATLAB Central Treasure Hunt Finisher
  • 12 Month Streak
  • Pro
  • Promoter
  • Introduction to MATLAB Master
  • Personal Best Downloads Level 1
  • GitHub Submissions Level 2
  • Knowledgeable Level 5
  • First Submission
  • First Review
  • Revival Level 2
  • Thankful Level 3

Ver insignias

Feeds

Ver por

Respondida
Parallel tool (parfor) and COM objects
It's not about time consumption. Opening the application within parfor loop gives each worker its own instance of application s...

alrededor de 13 horas hace | 1

| aceptada

Respondida
I want to know how to use MATLAB to invoke two software to process data
There are different ways of doing it, which should be adapted to your application. This involves interacting with COM objects, b...

6 días hace | 0

Respondida
Drawing on UI Axes in MATLAB app designer
Hey, I made an example, adapted from Adam's answer. I am a little bit confused by your code, your procedure makes sense and is...

20 días hace | 0

Respondida
command line install of .mlpkginstall silently
https://uk.mathworks.com/matlabcentral/answers/293235-how-do-i-download-and-install-a-support-package-on-an-offline-machine Ther...

27 días hace | 0

Respondida
Display of nodal values of a matrix
Here is a function that allows that text

29 días hace | 0

Respondida
set requirement property ID to read only
https://uk.mathworks.com/help/matlab/matlab_oop/mutable-and-immutable-properties.html

alrededor de 1 mes hace | 0

Respondida
How to detect which audio output device is being used by Windows
Maybe this will help devWriter = audioDeviceWriter() devWriter.getAudioDevices % Gets the available audio devices to output d...

alrededor de 1 mes hace | 0

Respondida
global properties in app designer with arduino
I would suggest you to implement your second code in the startupFcn callback. This is the callback that runs when the app is loa...

alrededor de 1 mes hace | 0

Respondida
Changing range voltage for NI acquisition : how to solve : Warning: Cannot support range of -5.0 to +5.0 Volts. Range set to -10 to +10 Voltt ?
Hello! It's just a warning, it will work, range is still in between -10V and 10V. Why wouldn't you utilize the full range of yo...

3 meses hace | 1

| aceptada

Respondida
NI USB-6001 background analog output
Use the appropriate function for background data acquisiton - https://uk.mathworks.com/help/releases/R2018b/daq/ref/startbackgro...

5 meses hace | 1

Respondida
Is it possible to disable/change the default selection logic of CheckBoxTree?
As it is now, it is impossible. Parent nodes will always be selected if all child nodes are. I have made a callback function and...

6 meses hace | 1

Respondida
Current figure text interpreter
Hi, here's an example fig = figure(); subplot(2,1,1); x = linspace(0,10); y1 = sin(x); plot(x,y1) legend("ax_1"); subplot...

6 meses hace | 0

| aceptada

Respondida
Retrieve Compiled App Project Info at Runtime
I haven't seen a property that says anything about app version, however, it's possible to get it if you extract the .mlapp file ...

6 meses hace | 0

Respondida
EventListener for plot's YLim property
Example below fig = uifigure(); ax = uiaxes(fig); plot(ax, magic(3)) propListener = addlistener(ax, 'YLim','PostSet',@(src, ...

6 meses hace | 0

Respondida
How to run loop until user enters text in the command window? (without using the input function)
Undocumented and subject to change but it works, at least when it was tested back then https://uk.mathworks.com/matlabcentral/an...

6 meses hace | 1

| aceptada

Respondida
Importing Solidworks 2D Geometry into MATLAB
Here is a SolidWorks macro, you have to select the edge and run the macro. Hopefully it works, otherwise you need to tell me wha...

6 meses hace | 0

Respondida
How to change scatter plot shapes for multiple y variables to help differentiate them?
You can specify the marker type https://uk.mathworks.com/help/matlab/ref/scatter.html#btrli6p-1_1 You can check outboxchart too...

6 meses hace | 1

| aceptada

Respondida
Greybox Modelling Resources and Understanding Examples
Hey! There aren't many people dealing with this toolbox here. I will try to shed some light to it as I dealt with this for a li...

6 meses hace | 0

Respondida
Read individual cells from excel and write into excel
Try this clear; files = dir("*.xlsx"); idx = contains({files.name}, "~"); % removes open Excel files from list files(idx) = ...

6 meses hace | 0

Respondida
How can you prevent axis labels from having uneven spacing from the axis
Sometimes you have to let things be imperfect. Also, put down that magnifier in the drawer. Joke aside, try Horizontal Alignmen...

7 meses hace | 0

Respondida
Use splittapply with division
Hey, is this what you are looking for? load D1990.mat [group1, ID] = findgroups(D1990new.gvkey); y = splitapply(@(x) {x./x(...

7 meses hace | 0

| aceptada

Respondida
How to plot the distance between two curves
% Gegebene Daten x = [29.069, 44.395, 59.528, 74.76, 90.036, 150]; y = [0.07091, 0.076187, 0.081665, 0.087588, 0.093687, 0.119...

7 meses hace | 1

| aceptada

Respondida
How do I register/record analog input using a DAQ device?
How does your saveData function look like? Most likely, you need to open your file in append mode. Every time you write, data ju...

7 meses hace | 0

| aceptada

Resuelto


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

7 meses hace

Respondida
How to save oullook email as text format
Hi, objol = actxserver('outlook.Application'); objNameSpace = objol.GetNamespace('MAPI'); objInbox = objNameSpace.GetDefa...

7 meses hace | 1

| aceptada

Respondida
Unrecognized method, property, or field 'Value' for class 'matlab.ui.control.Button'.
Correct property that you are looking for is Enabled, instead of Value.

7 meses hace | 1

Respondida
I'm trying to use the findpeaks function in a for-loop for a large array and struggling to generate multiple outputs
Hey, If I understood correctly your question, you should use a cell array due to numeric array limitations which is that numeri...

7 meses hace | 0

| aceptada

Respondida
How to limit editfield length and auto shift cursor in App Designer
MATLAB now has a focus function since R2022a that does exactly what you want.

7 meses hace | 1

| aceptada

Respondida
Appdesigner Numeric Edit Field value is displayed different when user tries to edit
Hi, Just use round function on the user input, Event.NewData IIRC.

7 meses hace | 0

Respondida
Copy 3 UIaxes into one figure
Hey, Solution for combining the image is below. If you need some space in between, you can add white space, by creating array t...

7 meses hace | 0

Cargar más