Community Profile

photo

Hassaan


Technical Services Consultant | Simulation Expert | Upwork | Fiverr

2023년부터 활동

Followers: 0   Following: 0

연락

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

통계

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

배지 보기

Feeds

보기 기준

답변 있음
Python script changes are not updated in MATLAB
py.reload(py.matlab_file); Try using py.reload() -----------------------------------------------------------------------------...

2일 전 | 0

답변 있음
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...

5일 전 | 0

답변 있음
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 ...

5일 전 | 0

답변 있음
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...

5일 전 | 0

답변 있음
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...

5일 전 | 1

답변 있음
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...

8일 전 | 0

| 수락됨

답변 있음
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] = ...

8일 전 | 0

| 수락됨

답변 있음
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...

9일 전 | 0

답변 있음
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...

10일 전 | 1

답변 있음
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...

11일 전 | 0

답변 있음
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...

12일 전 | 0

답변 있음
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...

12일 전 | 0

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

12일 전 | 0

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

13일 전 | 0

| 수락됨

답변 있음
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...

17일 전 | 0

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

19일 전 | 0

| 수락됨

답변 있음
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...

19일 전 | 0

| 수락됨

답변 있음
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 ...

19일 전 | 0

답변 있음
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...

19일 전 | 0

답변 있음
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, ...

19일 전 | 0

답변 있음
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]; % ...

19일 전 | 1

| 수락됨

답변 있음
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 = ...

21일 전 | 1

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

21일 전 | 0

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

22일 전 | 0

| 수락됨

답변 있음
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...

23일 전 | 0

| 수락됨

답변 있음
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...

24일 전 | 0

답변 있음
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 = ...

26일 전 | 0

| 수락됨

답변 있음
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,...

대략 1개월 전 | 0

답변 있음
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...

대략 1개월 전 | 0

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

대략 1개월 전 | 0

더 보기