photo

Hassaan


2023 年からアクティブ

Followers: 3   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
MATLAB Answers

0 質問
510 回答

File Exchange

1 ファイル

Cody

1 問題
58 解答

ランク
116
of 300,471

評判
1,084

コントリビューション
0 質問
510 回答

回答採用率
0.00%

獲得投票数
154

ランク
19,723 of 21,010

評判
0

平均評価
0.00

コントリビューション
1 ファイル

ダウンロード
1

ALL TIME ダウンロード
4

ランク
5,086
of 169,201

コントリビューション
1 問題
58 解答

スコア
1,009

バッジ数
10

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Most Accepted 2024
  • 6 Month Streak
  • Commenter
  • Promoter
  • Explorer
  • First Submission
  • Thankful Level 2
  • Knowledgeable Level 5
  • Pro
  • Speed Demon
  • Creator
  • CUP Challenge Master

バッジを表示

Feeds

表示方法

回答済み
Magnitude Plot Incorrect Frequency
% Time step dt = 0.001; % Time vector t = -0.5 : dt : 0.5; % Define the signal: x1 = 2 cos(2π·20t) x1 = 2 * cos(2*pi*...

8ヶ月 前 | 1

回答済み
Unable to create Bode plot of H(s)=(s+10)/(s(s+5)^2)
% Define numerator and denominator num = [1 10]; den = [1 10 25 0]; % Create the transfer function sys = tf(num, den); ...

11ヶ月 前 | 0

| 採用済み

回答済み
How to overwrite my data everytime I run my code?
% Your data table data = table(...); % Replace with your actual data % Delete the existing file (if it exists) if exist('...

1年以上 前 | 0

| 採用済み

回答済み
How do I save the answers from a for loop that solved an equation symbolically?
T_c = 33.145; % critical temperature of hydrogen (K) P_c = 1.3e6; % critical pressure (Pa) R = 8.314472; % uni...

1年以上 前 | 0

回答済み
Is there a Matlab command to check the expiration date of my license?
For a more direct method that works in most cases: Open MATLAB. Go to the Home tab. Click on Help > Licensing > Manage Licens...

1年以上 前 | 0

回答済み
MATLAB GUI does not finish execution when called from another MATLAB based GUI.
Few of the possible debugging steps may help: Check File Permissions: Ensure the save directory has the necessary permissio...

1年以上 前 | 0

| 採用済み

回答済み
How do I construct matrices of multiple variables and plot a graph
% Define the time span and initial conditions tspan = [0 3]; z0 = [100; 0]; % Initial conditions for x and y, combined into a...

1年以上 前 | 1

| 採用済み

回答済み
Random Binary Bits Generation
Generating random binary sequences with consistently high P-values (>0.95) across all 16 NIST tests is very challenging due to t...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

回答済み
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]...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

回答済み
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; ...

1年以上 前 | 0

回答済み
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 ...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 1

| 採用済み

回答済み
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...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

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

1年以上 前 | 0

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

1年以上 前 | 1

回答済み
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...

1年以上 前 | 0

回答済み
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(...

1年以上 前 | 0

| 採用済み

回答済み
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...

1年以上 前 | 0

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

1年以上 前 | 1

回答済み
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...

1年以上 前 | 0

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

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

| 採用済み

回答済み
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...

1年以上 前 | 0

| 採用済み

回答済み
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...

1年以上 前 | 0

| 採用済み

さらに読み込む