photo

Mohammad Sami


Last seen: 3 giorni fa Attivo dal 2014

Followers: 1   Following: 0

Statistica

All
MATLAB Answers

2 Domande
356 Risposte

Cody

0 Problemi
155 Soluzioni

RANK
123
of 300.331

REPUTAZIONE
1.020

CONTRIBUTI
2 Domande
356 Risposte

ACCETTAZIONE DELLE RISPOSTE
50.0%

VOTI RICEVUTI
118

RANK
 of 20.920

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
1.086
of 168.124

CONTRIBUTI
0 Problemi
155 Soluzioni

PUNTEGGIO
2.123

NUMERO DI BADGE
10

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • 24 Month Streak
  • Indexing II Master
  • Introduction to MATLAB Master
  • Community Group Solver
  • Knowledgeable Level 5
  • Pro
  • Revival Level 2
  • First Answer
  • Speed Demon
  • Solver

Visualizza badge

Feeds

Visto da

Risposto
Why READTABLE skips the first line ?
You can modify the behaviour of read table function by optional arguments. What you want to do it specify the Number of header l...

6 mesi fa | 0

Risposto
How to invoke a .NET-method which expects a .NET-struct as parameter?
You can follow the type converstion between Matlab and .NET here https://www.mathworks.com/help/matlab/matlab_external/handle-m...

6 mesi fa | 0

Risposto
Why can't my standalone desktop app find the path to my support files?
You can try loading them using relative paths instead of ctfroot. So in case of the image you can try the following imagePath =...

6 mesi fa | 0

Risposto
Convert string into datetime
you can simply use the datetime function to convert a string into datetime type dt_string = ["2023-10-31 01:02:03" "2023-11-01 ...

12 mesi fa | 0

Risposto
Servicing Python Matlab API queries
I would suggest use .NET or Java to run the external process. This would return you a .NET or java object which have functions t...

circa un anno fa | 0

Risposto
How to calculate the deviation or difference between two arrays of datetime?
Here is something to start you off. H = readtable('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1501395/H4L.t...

circa 2 anni fa | 1

| accettato

Risposto
Error using == Matrix dimensions must agree
I assume you are trying to extract a number from the file name. Your code assumes that the file name is 4 characters or longer....

oltre 2 anni fa | 0

Risposto
How to extract Datetime string to separate columns of yyyy dd mm hh mm
varNames = {'dt','val'} ; varTypes = {'datetime','double'} ; delimiter = '\t'; opts = delimitedTextImportOptions('VariableNam...

quasi 3 anni fa | 1

Risposto
Share standalone application (.Exe) with Database
I think the best solution for you will be to use the Matlab SQLite Interface for the database. This does not require users setti...

quasi 3 anni fa | 0

Risposto
How do I make a system to add and delete tabs in a GUI with App Designer?
This is because in app designer you need to define the property names before you can use them in the code. I would suggest you a...

quasi 3 anni fa | 1

Risposto
Crate a changeable label in programmable App (GUI)
I am assuming that you are using app designer. If so you should place the uilabel in the UI on the canvas. Then you can access ...

circa 3 anni fa | 0

Risposto
How to replace values in a very large array
You can modify what @dpb suggested as follows. xx=find(tdcRelTime < 1.5e10); idx_Laser(ismember(idx_Laser,xx)) = 0;

circa 3 anni fa | 1

| accettato

Risposto
How close secondary apps when the main app closed?
You will need to store a reference to the secondary app in your main app. This will allow you to close it in the CloseRequestFcn...

circa 3 anni fa | 0

Risposto
StandAlone Matlab app don't show the points with the interection with the mouse
Enable or Disable Built-In Interactions To control whether a set of built-in interactions is enabled within a chart, use the di...

circa 3 anni fa | 1

Risposto
My MATLAB 2022a not talking to Python 3.9.13
It seems that python is not your on paths list, hence its not auto detected by Matlab. You can manually set the executable path...

circa 3 anni fa | 0

| accettato

Risposto
How to create Random Binary Number with fix amount of 1 and 0?
You can try the following. bin_len = 30; num_1 = 4; n = 100; binfunc = @(~)sum(pow2(randperm(bin_len,num_1)-1)); bnout = ar...

oltre 3 anni fa | 0

Risposto
How to increase spacing between axis ticks in plot with a lot of data
since your data is only between 62.4 and 62.6, you can limit your y axis to these values using the ylim function. fakedata = [l...

oltre 3 anni fa | 0

| accettato

Risposto
Add Array in a Cell in a For Loop
Your current code is creating a nested cell array. You can change it as follows. % for testing % i = 1; x_wing = 1; y_wing ...

oltre 3 anni fa | 1

| accettato

Risposto
Is there a way to get the redirect url after a https / api request?
You can use the matlab.net.http interface to follow the redirects. https://www.mathworks.com/help/matlab/ref/matlab.net.http.re...

oltre 3 anni fa | 2

| accettato

Risposto
How do I get the final URL from a redirect link? (like requests.get from python)?
You can use the matlab.net.http interface to follow the redirects. https://www.mathworks.com/help/matlab/ref/matlab.net.http.re...

oltre 3 anni fa | 0

Risposto
Hi, everyone! I got an error while runnig this code . ""Error setting property 'AlturaactualEditField' of class 'app2': Cannot convert double value 3.79215 to a handle "
You need to assign it to the value of editfield rather then the edit field itself app.AlturaactualEditField.Value = math(cont);...

oltre 3 anni fa | 0

| accettato

Risposto
Comparing two differently-sized arrays
The best way to do what you are requesting is to convert your arrays to timetables and then either use the synchronize function ...

oltre 3 anni fa | 0

Risposto
Looking for a function minimizer subject to nonlinear constraints with absolute function tolerance.
You can try setting the 'TolFun' parameter in the optimset. You can refer to the following documentations for more details htt...

oltre 3 anni fa | 0

Risposto
MATLAB app designer, how to update value of a property in declared callback function
You can try the following. configureCallback(app.arduino,"terminator",@app.readSerialData)

quasi 4 anni fa | 0

Risposto
How to declare variable in App Designer
Do you mean you want to set the value of A equal to the value of edit field ? app.A = app.EditField.Value;

quasi 4 anni fa | 0

Risposto
How to set defaults for GridLayout?
In this case I believe the only way to change the default column spacing is to edit the code shipped by matlab.

quasi 4 anni fa | 0

Risposto
Static Java methods won't execute with parfor loop
The dynamic java class path is only modified in the process calling the javaaddpath. So for parallel you will have to add your j...

quasi 4 anni fa | 2

| accettato

Risposto
How to change automatically generated uibutton properties in another function?
You can store all your buttons as an array in the app property orientationButtons. function create_buttons(app) % % make b...

quasi 4 anni fa | 0

| accettato

Risposto
How to change training and plotting options when training a deep network?
From matlab documentation, you can only use this option if you specified validation data as well. https://nl.mathworks.com/help...

quasi 4 anni fa | 0

Risposto
How to write our own Loss function in Deep neural network layers.
You can first check if the loss function is already available in Matlab here. https://www.mathworks.com/help/deeplearning/ug/de...

quasi 4 anni fa | 0

| accettato

Carica altro