Community Profile

photo

Hassaan


Technical Services Consultant | Simulation Expert | Upwork | Fiverr

Aktiv seit 2023

Followers: 0   Following: 0

Kontakt

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

Statistiken

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

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Python script changes are not updated in MATLAB
py.reload(py.matlab_file); Try using py.reload() -----------------------------------------------------------------------------...

3 Tage vor | 0

Beantwortet
Accessing a vector form a matrix
% Dummy data for vectors x1, x2, and x3 x1 = sin(linspace(0, 2*pi, 100)); % Example data for x1 (a sine wave) x2 = cos(linspa...

6 Tage vor | 0

Beantwortet
how to solve my problem that i write
clc; clear; close all; % Constants and parameters lambda_sh = 0.775e-6; % SH wavelength nlithium_sh = 2.1784; lambda_ff ...

6 Tage vor | 0

Beantwortet
Find the variable inside the LCM argument
% Known values of B and nrt B = 120; % Example value for B nrt = 8; % Example value for nrt % Find all divisors of B div...

6 Tage vor | 0

Beantwortet
How to match matrix elements for a condition?
Assuming a 1-dimensional array. Will check for sums of three consecutive elements that are close to a given value (target_sum) w...

6 Tage vor | 1

Beantwortet
using if else statements to assign a value to a variable based on the value of a specific element in a matrix
An initial idea: % Example matrix M M = randn(10,10); % A 10x10 matrix with random values % Initialize matrix p with the s...

9 Tage vor | 0

| akzeptiert

Beantwortet
How to draw a streamline diagram in a circular area?
% Parameters radius = 2; % Radius of the circular area x = linspace(-2.5, 2.5, 100); y = linspace(-2.5, 2.5, 100); [X, Y] = ...

9 Tage vor | 0

| akzeptiert

Beantwortet
Given the coordinates (x, y) of a center of a circle and it's radius, write a program which will determine whether a point lies inside the circle, on the circle or outside
% Define the coordinates of the center of the circle xc = 0; yc = 0; % Define the coordinates of the point to check xp = 3...

10 Tage vor | 0

Beantwortet
How can I illustrate a sinusoidal plane wave in MATLAB?
% Define the domain x = linspace(-2*pi, 2*pi, 100); z = linspace(-2, 2, 20); [X, Z] = meshgrid(x, z); % Define the wave y...

11 Tage vor | 1

Beantwortet
Why is my code not working?
f = @(final) average_f(final) - 65; % Define a function that should be zero initial_estimate = 70; % Initial estimate for fso...

12 Tage vor | 0

Beantwortet
Find the number of regions and calculate the area of each region
clear; format short e; rng('shuffle'); %% Parameters export = 1; % Whether or not to save data for ABAQUS N = 1000; % nu...

13 Tage vor | 0

Beantwortet
How to append Nested cell array to .csv file
@Karthik One of many possible approaches: % Example nested cell array nestedCell = { {1, 2, 3}, 'Text'; 4, {5, 'More...

13 Tage vor | 0

Beantwortet
Why clearing memmapfile is taking too long?
function time = ReadDataStoreMapTime(filename) tic; chunksize = 2.5*1024*1024*1024; ds = fileDatastore(filename, ...

13 Tage vor | 0

Beantwortet
Printing sentences using cell arrays
% Define cell arrays Names = {'Harry', 'Xavier', 'Sue'}; Verbs = {'loves', 'eats', 'throws'}; Nouns = {'baseballs', 'rocks', ...

14 Tage vor | 0

| akzeptiert

Beantwortet
can someone please assist to make the square wave plot at 50Hz
fs = 1000; % Sampling frequency f = 50; % Frequency of the square wave % Time vector from 0 to 1 second, with step size o...

18 Tage vor | 0

Beantwortet
MATLAB 'imread' function error.
This problem can arise due to several reasons, including path conflicts, shadowing issues, or a corrupted MATLAB installation. H...

20 Tage vor | 0

| akzeptiert

Beantwortet
MATLAB coder has been running for a week
It is highly unusual for MATLAB Coder to take this long in the type inference stage. This extended processing time is not normal...

20 Tage vor | 0

| akzeptiert

Beantwortet
Combining multiple rows from one matrix to another matrix
% Define the original matrix P P = [1 2 3 4 5; 6 7 8 9 10; 11 12 13 14 15; 16 17 18 19 20; 21 22 23 24 ...

20 Tage vor | 0

Beantwortet
plotting time as legend values with filter as x and amplitude as y
close all; clear all; clc; % Initialization fs = 20e3; % Sampling frequency numFilts = 32; % Number of filters CenterFre...

20 Tage vor | 0

Beantwortet
HTTP Request returns partial data
1. Server Closes Connection Prematurely The server might be closing the connection before all the intended data has been sent, ...

20 Tage vor | 0

Beantwortet
Cone containing set of points
% Define the opening angle theta (in radians), and two points theta = pi / 6; % Example value for theta point1 = [1, 2, 3]; % ...

20 Tage vor | 1

| akzeptiert

Beantwortet
Anybody can help me to plot a sand rose diagram?
% Your DP values for each of the 16 directional bins dp_values = [/* your DP values here */]; % Your RDD value rdd_value = ...

22 Tage vor | 1

Beantwortet
use rgb to caculate three brown ratio
image = imread('sample.jpeg'); % Load the image image_double = im2double(image); % Convert to double precision floating point ...

22 Tage vor | 0

Beantwortet
Estimate the psd of a signal
% Constants and Signal Definition Fs = 1000; % Sampling frequency in Hz duracion = 1; % Duration in seconds N = Fs * duracion...

23 Tage vor | 0

| akzeptiert

Beantwortet
normal distributed numbers around a specific value
Using normrnd (if you have the Statistics and Machine Learning Toolbox) % Parameters mu = 50; % Mean (the specific value aroun...

24 Tage vor | 0

| akzeptiert

Beantwortet
How can I analyze the sum and product together in a code?
An initial Idea: % Assuming the Excel file is named 'alpha_values.xlsx' and the values are in the first column alpha = xlsread...

25 Tage vor | 0

Beantwortet
How to multiply matrices randomly?
% Parameters d1 = 258e-9; % meters n1 = 1.45; d2 = 163e-9; % meters n2 = 2.3; totalLength = 200e-6; % meters layerCount = ...

27 Tage vor | 0

| akzeptiert

Beantwortet
Fourier Series Curve Fitting and giving its coefficient with respect to eqaution
An initial idea: % Corrected initialization of x and y arrays with multiline syntax x = [0.015404238, 0.027389034, 0.03937383,...

etwa ein Monat vor | 0

Beantwortet
str2num sending figures to printer, is there an alternative?
% Example text line that might be read from your file textLine = 'The result is 42 and not 43.5 or any other number like -1.23e...

etwa ein Monat vor | 0

Beantwortet
index exceeds array bounds
load('data') % Assuming 'data' is your matrix % Find rows with any zero element rowsWithZero = any(data == 0, 2); % Remo...

etwa ein Monat vor | 0

Mehr laden