Mrutyunjaya Hiremath
Followers: 0 Following: 0
Intrested in Coding
統計
All
Feeds
回答済み
apple silicon and parfor efficiency
Your observations and analysis are very insightful, and you've touched upon several important points regarding parallel computin...
apple silicon and parfor efficiency
Your observations and analysis are very insightful, and you've touched upon several important points regarding parallel computin...
約1年 前 | 1
| 採用済み
回答済み
Errors in ASAP2 Generation: Attempt to call a non-function value
The error seeing appears to be a TLC (Target Language Compiler) error when MATLAB/Simulink tries to generate an ASAP2 file. TLC ...
Errors in ASAP2 Generation: Attempt to call a non-function value
The error seeing appears to be a TLC (Target Language Compiler) error when MATLAB/Simulink tries to generate an ASAP2 file. TLC ...
約1年 前 | 0
回答済み
How can I retrieve a PostgreSQL double precision[] from within MatLab from an actxserver("ADODB.Connection") connection?
Arrays in PostgreSQL, especially of type `double precision[]`, may not be directly supported or might be causing issues when fet...
How can I retrieve a PostgreSQL double precision[] from within MatLab from an actxserver("ADODB.Connection") connection?
Arrays in PostgreSQL, especially of type `double precision[]`, may not be directly supported or might be causing issues when fet...
約1年 前 | 0
回答済み
How calculate Energy efficiency in massive MIMO with antenna selection ?
The Energy Efficiency (EE) is usually measured in bits per joule (bits/J) and is calculated as follows: Energy Efficiency (EE) ...
How calculate Energy efficiency in massive MIMO with antenna selection ?
The Energy Efficiency (EE) is usually measured in bits per joule (bits/J) and is calculated as follows: Energy Efficiency (EE) ...
約1年 前 | 0
回答済み
Is there a MATLAB function to apply a 1D Gabor filter to an input?
% Parameters a = 1; % Amplitude mu = 0; % Mean sigma = 2; % Standard deviation f = 1; % Frequency phi = 0; % Phase off...
Is there a MATLAB function to apply a 1D Gabor filter to an input?
% Parameters a = 1; % Amplitude mu = 0; % Mean sigma = 2; % Standard deviation f = 1; % Frequency phi = 0; % Phase off...
約1年 前 | 0
回答済み
How to solve such integrations on MATLAB?
The 'quadgk' function in MATLAB can be used for numerical integration. However, since you're dealing with complex variables, you...
How to solve such integrations on MATLAB?
The 'quadgk' function in MATLAB can be used for numerical integration. However, since you're dealing with complex variables, you...
約1年 前 | 0
回答済み
Identify Duplicate values in an array and replace with Nan
If you want to replace only the duplicates with 'NaN' and keep one occurrence of each value intact, here is the code: % Sample ...
Identify Duplicate values in an array and replace with Nan
If you want to replace only the duplicates with 'NaN' and keep one occurrence of each value intact, here is the code: % Sample ...
約1年 前 | 0
| 採用済み
回答済み
Replacing elements in arrays
Here is a more straightforward way to replace the smallest and largest numbers in the array using MATLAB's built-in functions mi...
Replacing elements in arrays
Here is a more straightforward way to replace the smallest and largest numbers in the array using MATLAB's built-in functions mi...
約1年 前 | 0
回答済み
Unable one of the options of drop down
You can use 'set' to change the 'Enable' property of the dropdowns in the callback functions. Here's how you can modify the c...
Unable one of the options of drop down
You can use 'set' to change the 'Enable' property of the dropdowns in the callback functions. Here's how you can modify the c...
約1年 前 | 0
| 採用済み
回答済み
Why am I getting a parse error trying to put this function in MATLAB?
The issue you're encountering is because you have a syntax error in your MATLAB function declaration. You should define your fun...
Why am I getting a parse error trying to put this function in MATLAB?
The issue you're encountering is because you have a syntax error in your MATLAB function declaration. You should define your fun...
約1年 前 | 0
回答済み
How to obtain curve fitting tool startpoints using code? Replicate Curve Fitter Toolbox
% Prepare data [xData, yData] = prepareCurveData( time_temp, state_timeseries_temp ); % Set up fittype ...
How to obtain curve fitting tool startpoints using code? Replicate Curve Fitter Toolbox
% Prepare data [xData, yData] = prepareCurveData( time_temp, state_timeseries_temp ); % Set up fittype ...
約1年 前 | 0
回答済み
Solving an equation consisting of a PDE and ODE
clc; clear; close all; % Given parameters espo = 0.269; gamma = 0.49; beta = 0.09; Pa = 1200; k0 = 3.4965e-15; u =...
Solving an equation consisting of a PDE and ODE
clc; clear; close all; % Given parameters espo = 0.269; gamma = 0.49; beta = 0.09; Pa = 1200; k0 = 3.4965e-15; u =...
約1年 前 | 0
回答済み
How much GPU do I need?
Basic Formula to Estimate GPU Memory Requirement Memory Required=Model Size+Batch Size×(Forward Pass Memory+Backward Pass Memor...
How much GPU do I need?
Basic Formula to Estimate GPU Memory Requirement Memory Required=Model Size+Batch Size×(Forward Pass Memory+Backward Pass Memor...
約1年 前 | 1
回答済み
How to add restrictions to our group of differential equation? For example, in predator-prey model I want the sum of predator and prey to be fixed.
Here we go, t0 = 0; tfinal = 15; y0 = [20; 20]; % Initial conditions [prey, predator] [t, y] = ode23(@lotka, [t0 tfinal], y...
How to add restrictions to our group of differential equation? For example, in predator-prey model I want the sum of predator and prey to be fixed.
Here we go, t0 = 0; tfinal = 15; y0 = [20; 20]; % Initial conditions [prey, predator] [t, y] = ode23(@lotka, [t0 tfinal], y...
1年以上 前 | 0
回答済み
error: Matrix dimensions must agree
Here, You're running a nested loop: The outer loop (i) iterates over each trial or nest. The inner loop (j) iterates over each...
error: Matrix dimensions must agree
Here, You're running a nested loop: The outer loop (i) iterates over each trial or nest. The inner loop (j) iterates over each...
1年以上 前 | 0
回答済み
Variable-size signal error
Simulink is stricter than MATLAB when it comes to variable sizes. In MATLAB, you can change the size of a variable at will, but ...
Variable-size signal error
Simulink is stricter than MATLAB when it comes to variable sizes. In MATLAB, you can change the size of a variable at will, but ...
1年以上 前 | 0
回答済み
Wanted to use the function multisvm under Image Processing, since it has been removed, please suggest an alternative for the same.
'multisvm' was never a built-in MATLAB function but seems to be a user-provided one that has been circulated in various forums a...
Wanted to use the function multisvm under Image Processing, since it has been removed, please suggest an alternative for the same.
'multisvm' was never a built-in MATLAB function but seems to be a user-provided one that has been circulated in various forums a...
1年以上 前 | 0
回答済み
Tricky restriction in an optimization problem
'fmincon' is equipped to handle such constraints by accepting a function that provides both equality and inequality constraints....
Tricky restriction in an optimization problem
'fmincon' is equipped to handle such constraints by accepting a function that provides both equality and inequality constraints....
1年以上 前 | 2
| 採用済み
回答済み
How to eliminate transition section in contourf function;
% Sample data [X, Y, Z] = peaks(100); % Create a figure figure; % Create a filled contour plot contourf(X, Y, Z); % ...
How to eliminate transition section in contourf function;
% Sample data [X, Y, Z] = peaks(100); % Create a figure figure; % Create a filled contour plot contourf(X, Y, Z); % ...
1年以上 前 | 0
回答済み
How do I stop my colorbar from adjusting automatically to represent the saturation within my figure
To prevent the color map from adjusting its scale dynamically over each timestep, you should set the CLim property of the curren...
How do I stop my colorbar from adjusting automatically to represent the saturation within my figure
To prevent the color map from adjusting its scale dynamically over each timestep, you should set the CLim property of the curren...
1年以上 前 | 0
回答済み
Can you provide me suggestions/critique my approach to this Neural Network fitting?
Try this: % Load your data % Example: load('your_data.mat'); % Assuming you have Input and Output as your data matrices % ...
Can you provide me suggestions/critique my approach to this Neural Network fitting?
Try this: % Load your data % Example: load('your_data.mat'); % Assuming you have Input and Output as your data matrices % ...
1年以上 前 | 0
| 採用済み
回答済み
circularly polarized signals using matlab audio
However, I'll provide a general approach, and you can adjust as per your exact needs. Generate the Signal: If you're thinking o...
circularly polarized signals using matlab audio
However, I'll provide a general approach, and you can adjust as per your exact needs. Generate the Signal: If you're thinking o...
1年以上 前 | 0
回答済み
how add "$" and "' ' " in array string
% Sample data T = [ "139411.39"; "115944.39"; "413970.912"; "124256.379"; "144673.585"; "93473.16...
how add "$" and "' ' " in array string
% Sample data T = [ "139411.39"; "115944.39"; "413970.912"; "124256.379"; "144673.585"; "93473.16...
1年以上 前 | 0
回答済み
Different outputs from spectrogram and pwelch
Spectrogram Scaling: In your spectrogram analysis, you are converting the spectrogram power values to dB and applying calibratio...
Different outputs from spectrogram and pwelch
Spectrogram Scaling: In your spectrogram analysis, you are converting the spectrogram power values to dB and applying calibratio...
1年以上 前 | 0
回答済み
How to check which distribution (normal or exponential or gamma) fits best to a data set? Which function to use for this?
To determine which distribution (normal, exponential, or gamma) fits the dataset most accurately, you can use a goodness-of-fit ...
How to check which distribution (normal or exponential or gamma) fits best to a data set? Which function to use for this?
To determine which distribution (normal, exponential, or gamma) fits the dataset most accurately, you can use a goodness-of-fit ...
1年以上 前 | 0
回答済み
How to export a set of tables to Excel
% Create a cell array to hold your tables tables = {table1, table2, table3}; % Replace with your actual tables % Specify the...
How to export a set of tables to Excel
% Create a cell array to hold your tables tables = {table1, table2, table3}; % Replace with your actual tables % Specify the...
1年以上 前 | 0
回答済み
Can anybody help me to code boundary conditions in MATLAB for Keller Box Method?
% Define parameters r_1 = 0.1; r_2 = 0.2; S = 2.0; % Define the differential equations % y(1) = f, y(2) = f', y(3) = θ, y...
Can anybody help me to code boundary conditions in MATLAB for Keller Box Method?
% Define parameters r_1 = 0.1; r_2 = 0.2; S = 2.0; % Define the differential equations % y(1) = f, y(2) = f', y(3) = θ, y...
1年以上 前 | 0
回答済み
Genetic Algorithm Best Objective Function Value Increased in Later Generations
In genetic algorithms (GA), it is common to observe fluctuations or changes in the objective function value (fitness) from one g...
Genetic Algorithm Best Objective Function Value Increased in Later Generations
In genetic algorithms (GA), it is common to observe fluctuations or changes in the objective function value (fitness) from one g...
1年以上 前 | 1
| 採用済み
回答済み
Plot equation using user input array
clear s = tf('s'); zeta = input('Enter damping ratio values in a 1D array: '); omega = input('Enter natural frequency val...
Plot equation using user input array
clear s = tf('s'); zeta = input('Enter damping ratio values in a 1D array: '); omega = input('Enter natural frequency val...
1年以上 前 | 0
回答済み
Adaptive filter output shows a offset in frequency domain?
Try this .. % Load and preprocess your EMI measurement data % Assuming you have x(k) as background noise and d(k) as the signa...
Adaptive filter output shows a offset in frequency domain?
Try this .. % Load and preprocess your EMI measurement data % Assuming you have x(k) as background noise and d(k) as the signa...
1年以上 前 | 0