Answered
How can i get the optimum point from this curve ?
I assumed you want to optimize for a balance between high hydrogen flow rate and high Faraday efficiency while maintaining a rea...

2 years ago | 0

| accepted

Answered
MATLAB null conditional operator
Example Using 'isempty' If your logger can be [] (empty) when it's not set: if ~isempty(logger) logger.warn('WARNING'); ...

2 years ago | 0

Answered
Matlab R2023b installation issue
Check System Requirements: Ensure that your system meets the requirements for MATLAB R2023b. MATLAB's hardware and software req...

2 years ago | 0

Answered
How to plot two figures side by side in a same plot?
clear all; close all; clc; % Dummy data % data = rand(22, 2); % 22 rows of random data data= [0.1,3.8; 0.1,2.7; ...

2 years ago | 0

| accepted

Answered
Creating impulse through a loop
% Filter specifications fs = 16e3; % Sampling frequency numFilts = 32; % Total number of filters (not all used) BW = 100; % F...

2 years ago | 1

| accepted

Answered
How to update rfplots
% Clear the axes cla(app.AxesMag); % Hold on for multiple plots hold(app.AxesMag, 'on'); % Plot your s-parameters rfplo...

2 years ago | 0

Answered
Can I configure network.lic to connect to a license server via proxy?
System-Wide Proxy Configuration: You could configure your operating system to route traffic through the SOCKS proxy. This method...

2 years ago | 0

Answered
MinGW-w64 compiler not detected
Check Compatible Compilers: First, ensure that you have a Fortran compiler that is compatible with MATLAB R2023a. You can find a...

2 years ago | 0

| accepted

Answered
How to generate a random 3D vector with set magnitude?
targetMagnitude = 10; % Target magnitude of the vector tolerance = 0.1; % Tolerance for the magnitude nVectors = 5; % Number o...

2 years ago | 1

| accepted

Answered
UDP or TCP data send from Simulink Desktop real time to Simulink real time.
To exchange data between two simulations running on different computers with Simulink Desktop Real-Time on one and Speedgoat Sim...

2 years ago | 0

Answered
How to run standalone application from the folder where it is located?
Package the App as a Standalone Application: Open your app in MATLAB and use the Application Compiler (deploytool or the Apps t...

2 years ago | 0

Answered
How can I create a 3D mesh/surface chart with one matrix of data
% Example matrix T = [2001 3 5 7; 2002 4 6 7; 2003 8 10 11; 2004 7 13 7; 2005 4 15 12; 2006 2 16 10]...

2 years ago | 0

Answered
Calling a function in the command window
File Naming and Location: Ensure that the function GNAv2 is saved in a MATLAB file with the exact same name, GNAv2.m, and that t...

2 years ago | 0

| accepted

Answered
How to name and save multiple variable files in .png format.
1. Save as MAT-file MAT-files are useful for storing MATLAB variables and can be easily loaded back into MATLAB later. To save ...

2 years ago | 0

| accepted

Answered
How to simulate T by inverse transform method
lambda = 5; % Replace with your value for lambda mu1 = 3; % Replace with your value for mu1 n_simulations = 1000; % The num...

2 years ago | 0

| accepted

Answered
How can I save current figure in a structure as .fig?
Directly saving a figure handle inside a structure is not straightforward because the figure handle is a reference to a figure o...

2 years ago | 0

| accepted

Answered
can MATLAB render 10-bit images in a 10-bit TV?
Data Type: Ensure that the image data is stored in a format that supports the desired bit depth. For 16-bit images, this would b...

2 years ago | 0

Answered
how to super impose the label data information from lidar labeller app to original data
Load the labeled data which contains the bounding box information. Load the original LiDAR data (point cloud). Use visualizati...

2 years ago | 0

| accepted

Answered
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 ?
Driver Limitations: The MATLAB Data Acquisition Toolbox may not fully support all features of the NI hardware driver that are av...

2 years ago | 0

Answered
How to find the license dependency of a Simulink model?
Identify Fixed-Point Capable Blocks: Go through your Simulink model and identify blocks that have fixed-point settings. These ar...

2 years ago | 0

Answered
why is my signal not denoised eventhough wdenoise function was introduced?
Noise Characteristics: If the noise within the signal is not well-separated from the signal in the wavelet domain, denoising may...

2 years ago | 0

Answered
overcome machine precision for picosecond scale time axis
@Louis Tomczyk I hope it answers your query. Use linspace or colon operator carefully: When generating time vectors, linspace...

2 years ago | 0

Answered
Matlab 2023b creates desktop launchers with unknown purpose on Ubuntu
Installation Scripts: The MATLAB installer scripts may not account for all the variations in desktop environments or Linux distr...

2 years ago | 0

| accepted

Answered
Matlab 2023b creates desktop launchers with unknown purpose on Ubuntu
you could create a new .desktop file with the correct command to launch MATLAB. [Desktop Entry] Type=Application Name=MATLAB ...

2 years ago | 0

Answered
Using audio m4a files for training
% Load the .mat file audioData = audioDatastore('C:\Users\aman\Desktop\data\Training', ... 'Include...

2 years ago | 0

Answered
Any MATLAB toolbox for processing GRACE Level-1B data?
@Dinuka Kankanige This may help: fengweiigg/GRACE_Matlab_Toolbox - File Exchange - MATLAB Central (mathworks.com) ------------...

2 years ago | 1

Answered
Basics of Simscape Battery and simulations
The equivalent circuit of a cell made using the Battery Builder is not directly specified in the documentation, but Simscape Bat...

2 years ago | 1

| accepted

Answered
Continuous deterioration of performance on Apple silicon
Performance Profiling: Use MATLAB's built-in profiler to identify if specific functions or operations are causing the slowdown. ...

2 years ago | 0

Answered
How to plot cross-ambiguity function of this binary sequence?
% Parameters PRF = 50000; % Pulse Repetition Frequency Fs = 100e6; % Sampling Frequency N = 63; % Length of Kasami sequence ...

2 years ago | 0

| accepted

Answered
Read serial device and update uitable in loop
Buffer Overflow: Continuous reading from a serial port without adequate processing time can lead to a buffer overflow. This can ...

2 years ago | 0

| accepted

Load more