photo

Hassaan


Technical Services Consultant | Simulation Expert | Upwork | Fiverr

Aktiv seit 2023

Followers: 0   Following: 0

Nachricht

Embedded Systems Engineer | Technical Services Consultant | Freelancer | Simulation Expert | Freelancer on Upwork, Fiverr. Our team is well-versed in a multitude of programming languages, platforms, and technologies, focused on transforming your ideas into reality. Whether you're a startup, a seasoned business, or an individual with a unique project, we can provide tailored solutions to meet your specific needs. We are excited to collaborate with you and bring your innovative ideas to life. For more information, project inquiries, or to schedule a consultation, please do not hesitate to contact us.

Programming Languages:
Python, C++, C, C#, Javascript, Go, MATLAB, VHDL
Spoken Languages:
English, Hindi
Pronouns:
He/him
Professional Interests:
Simulation and Analysis, Simulation, Tuning, and Visualization, Electrical and Computer Engineering, Embedded Systems, Technical Services and Consulting

Statistik

All
  • 6 Month Streak
  • Thankful Level 2
  • Commenter
  • Promoter
  • Explorer
  • First Submission
  • Knowledgeable Level 5
  • Pro
  • Speed Demon
  • Creator
  • CUP Challenge Master
  • Community Group Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
tcpclient objects are not supported by icdevice. Hardware interface object must be a serial, tcpip, visa, or gpib object.
Continue Using tcpip: Since it hasn't been removed yet, you can continue to use tcpip until MathWorks provides a clear update or...

5 Tage vor | 0

Beantwortet
Problem of rotation of surface on xy plane
clear all; close all; clc; % Load your point cloud data load('xyz_c1p1'); % Assuming 'xyz_c1p1' is in the format [X, Y, Z]...

5 Tage vor | 0

Beantwortet
MATLAB program to split a given matrix A into two matrices B & C such that B+C=A.
% Given matrix A A = [1 2 2 4; 2 4 3 0; 8 4 0 5; -3 4 5 0]; % Find the non-zero elements and their indices [rows, cols, val...

12 Tage vor | 0

Beantwortet
How to better graphically represent this data?
3D Scatter Plot with Color Coding % Example data R1 = rand(100, 1) * 100; R2 = rand(100, 1) * 100; R3 = rand(100, 1) * 100; ...

12 Tage vor | 0

Beantwortet
Laplacian sharpening filter in frequency domain
clear; close all; clc; % Read and convert the image a = imread('moon.tif'); a = im2double(a); % Display the input image ...

26 Tage vor | 0

Beantwortet
Difference between fft and dsphdl.FFT.
The main differences between fft and dsphdl.FFT in MATLAB are: Context: fft: General-purpose function for computing the FFT in...

28 Tage vor | 1

| akzeptiert

Beantwortet
plotting half an ellipse, a linear line and the interceptions between
% Parameters p0 = 400; % Initial p0 value M = 1.5; % Ratio for the ellipse equation % Linear line equation x1 = 400:0.1:60...

etwa ein Monat vor | 0

Beantwortet
Discrete cosine transform for unevenly spaced sample points
% Non-uniformly spaced sample points and corresponding data values x_nonuniform = sort(rand(1, 10) * 10); % Non-uniformly spac...

etwa ein Monat vor | 0

Beantwortet
How to write data from a Cell Array as multiple columns in a text or CSV file?
% Sample 1x2 cell array cellArray = {[1 2 3 4]; [5 6 7 8]}; % Initialize a matrix to store the data from the cell array num...

etwa ein Monat vor | 0

Beantwortet
How to iterate over data sets?
An initial idea adjust as per your data format and requirements. Better to share your .csv file. % Load data from the CSV file...

etwa ein Monat vor | 0

Beantwortet
I need help combining two sine waves
f = 1000; % Frequency of sine wave in Hz n = 10; % Number of periods to generate T = 1 / f; % Period of sine wave in...

etwa ein Monat vor | 0

Beantwortet
Update of a file online
When updating a file online using ForDriveConnector, Matlab Online may not immediately reflect the changes due to synchronizatio...

etwa ein Monat vor | 0

Beantwortet
Fill confidence band hexadecimal color
% Define the hexadecimal color hexColor = '#7E2F8E'; % Convert hex color to RGB triplet rgbColor = sscanf(hexColor(2:end), ...

etwa ein Monat vor | 1

Beantwortet
Python Module not found when call the python function using Matlab
1. Verify Python Environment in PyCharm Ensure that you know the exact Python interpreter and environment PyCharm is using wher...

etwa ein Monat vor | 0

Beantwortet
Apply 2-D logical mask to obtain masked third dimension values in 3-D array
% Define the 2D mask and 3D array with NaNs BW = logical([0,0,1; 0,1,1; 1,1,0; 1,0,0]); A = 9*ones(4,3,3); A(:,:,2) = 8*ones(...

etwa ein Monat vor | 0

| akzeptiert

Beantwortet
Parsing Through HTLM Style .txt File
% Open the file fileID = fopen('your_file.txt', 'r'); if fileID == -1 error('Could not open file'); end % Read the fi...

etwa ein Monat vor | 0

Beantwortet
How do I call Matlab polyfit function from C++?
#include <iostream> #include "MatlabEngine.hpp" #include "MatlabDataArray.hpp" void getXYpoints(double* x, double* y, siz...

etwa 2 Monate vor | 1

Beantwortet
Plot intersection between two surfaces and a plane.
A basic idea [other solutions may also exists]: Define the surfaces and the plane: Use the surf command to define the two surf...

etwa 2 Monate vor | 0

Beantwortet
tcpclient Sending Nested Strings
An initial idea: % Create the tcpclient object (assuming you have already connected) % t = tcpclient('192.168.1.1', 12345); ...

etwa 2 Monate vor | 0

Beantwortet
in y axis i want 10^(-2000). can anyone plz help
Assummed use case may help: clc; clear all; close all; % Generate dummy frequency data f = linspace(0, 1000, 1000); % Frequ...

2 Monate vor | 0

| akzeptiert

Beantwortet
plotting power spectrum density
% Load the data from the .dat files amplitude = load('amplitude.dat'); time = load('time.dat'); % Check if time data is pro...

2 Monate vor | 0

| akzeptiert

Beantwortet
The code doesn't work....
clc; clear all; close all; % Define the function fun = @(t) -0.01953125.*t.^2 + 18.75.*t; % Estimation point and step siz...

2 Monate vor | 0

| akzeptiert

Beantwortet
How to change the graph of frequency domain
% Create a square matrix of zeroes Z = zeros(99); origin = [round((size(Z,2)-1)/2+1) round((size(Z,1)-1)/2+1)]; % "center" of...

2 Monate vor | 0

| akzeptiert

Beantwortet
syntax error in if else if block
% Number of inputs: 3 % If expression (e.g., u1 ~= 0): u1 == 1 % Elseif expressions (comma-separated list, e.g., u2 == 2, u3...

2 Monate vor | 0

Beantwortet
Converting a cell array to can message timetable
Initial implementation: % Given cell array canMessageCell = {'Timestamp 1546909042', 'Interface ''can0''', 'ID ''0B9''', 'Data...

2 Monate vor | 0

Beantwortet
Matlab reading data using DLL and winsock2
Adjust as per your need: clc; clear; if libisloaded('udpfunc2') unloadlibrary('udpfunc2') end loadlibrary('udpfunc2.dl...

2 Monate vor | 0

Beantwortet
How to recover the original signal using ifft
clear; clc; close all; % Time step dt = 2.5e-9; % Frequency of the sine wave f = 10e6; % Number of points in the orig...

2 Monate vor | 0

| akzeptiert

Beantwortet
Thingspeak HTTP eror code: -210
1. Check API Key and Channel ID Ensure that the API Key and Channel ID used in your HTTP request are correct. An incorrect API ...

2 Monate vor | 2

Beantwortet
Why does the "Matrix dimensions must agree" error persists?
To give an initial idea: % Example MATLAB code to plot an audio recording % Sample rate Fs = 8000; % 8 kHz % Create a d...

2 Monate vor | 0

Beantwortet
How to add unknow parameter in matrix and solve it by use det() syntax for finding w
clc; % Clear command window clear; % Clear workspace syms w; % Define w as a symbolic variable % Define masses, damping coe...

2 Monate vor | 0

| akzeptiert

Mehr laden