Community Profile

photo

Girijashankar Sahoo


Last seen: 11 months ago|Active since 2018

Statistics

全部
  • Knowledgeable Level 2
  • First Answer
  • 求解器
  • 感恩1级

查看徽章

Content Feed

查看

Answered
Categorize data in if else statement
Weight=randi([1 100],1,50); Height=randi([1 3],1,50); BMI=Weight./(Height).^2; % to loop my BMI and categorize it into 'unde...

12 months ago | 0

Answered
最后一行的索引错误正在出现
b(1)= b(1)+u(i)*u(k-i+1)%在这里您定义长度(u)= 2,而u(i)*u(k-i+1)已超过索引value%所以我的建议denfine ...

1 year ago | 0

|公认

Answered
Help sketching equation into 3d graph
输出z的大小必须为200x200 matix%尝试此代码3D输出x = linspace(-1,1,200);y = linspace(-1,1.5,...

1 year ago | 1

Answered
MATLAB中的示例信号
%%use signal system and DSP tool box, plenty of example available

1 year ago | 0

Answered
generating wrong Nyquist plot of tf
sys = tf([0 0 1 3],[1 -3 0 0])nyquist(sys)

1 year ago | 0

Answered
How to plot a graph on frequency domain when i don't have any time parameter?
您正在计算频率的回报损失参数。计算返回信号的PSD输入和PSD x(k)=(1/n)*fft(x(n));...

1 year ago | 0

Answered
曲线下的区域使用Ginput
在此代码区域下的两个峰值使用区域=陷阱(峰)中的%%

1 year ago | 0

Answered
Need help with Fourier Transform fft
MATLAB代码DFT输出是正确的。您可以通过第一个DFT值将其变化,即数据序列的总和55 = sum([8 9 9 6 10 2 5 6] ...

1 year ago | 0

Answered
how do i define a convolution layer for time series data matlab
Choose length of input is same as length of comvolution layer

1 year ago | 0

Answered
Split a Number Sequence into n equal parts and then replacing the values in the matrix.
n =序列的25%长度n = sqrt(n)%打破n元素x = randi(30,1,25)a = reshape(x,[n,n])m = max(a,[],'...

1 year ago | 0

Answered
Convert from SNR to Eb/N0 (Matlab)
将SNR乘以TS/N SNR*TS/N

1 year ago | 0

|公认

Answered
Please amend my code :(
%%如果语句结束后,#再次将代码再次查看grav = 9.81;theta = pi/4;v = 20;x = 0;vx = cos(theta)。*v;y = 0;vy = sin(...

1 year ago | 0

Answered
Multiple plots taking different elements of X & Y matrices in a systematic pattern
x=[1:1:40]; y=[1:1:40]; l=length(x)/4 n=1 for i=1:l plot(x(1,n:4*i),y(1,n:4*i)) hold on n=4*i+1; end

1 year ago | 1

Answered
如何获得图形?
%%兄弟代码是相同的,只需将您的消息@message获取desire desion代码消息= [0 1 1 0 1 0 1];数据= [消息0]楼梯...

1 year ago | 0

解决了


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

1 year ago

解决了


找到输入向量的所有数字的总和
找到输入向量X的所有数字的总和。示例:输入x = [1 2 3 5]输出y是11输入x ...

1 year ago

Answered
Why can't I do the integral?
%%运行程序perhapes效果F = 1431/19208

1 year ago | 0

Answered
derive the state space from transfer function
b = [0 0 4]; a = [1 2*2^(1/2) 4]; [A,B,C,D] = tf2ss(b,a)

1 year ago | 0

Answered
曲线拟合中的问题
check the again, I get your result with same code

1 year ago | 0

Answered
我如何将其绘制为单位步骤响应
plot([0:0.001:10],0.5*(1 - exp(-2*t)))

1 year ago | 0

Answered
How do I make the legend color rectangles smaller?
legend({'A','B'},'Position',[0.2 0.6 0.1 0.2]) %% four-element vector of the form [left bottom width height]

1 year ago | 0

Answered
如何获得图形?
You have 7 bit, plot in time index 1-2, 2-3, 3-4,4-5,5-6,6-7,7-8 at time index 8 it will reach to next transition value. So we t...

1 year ago | 0

Answered
Some error being shown continuously
%% fzero函数可能有助于在一行指令中求解x0 = 0 x = fzero(@(x)16.19983968*(x^4)+(-12.83225571*(x^3))...

1 year ago | 0

Answered
Plotting the first column of each page on one plot
%% here is i am taking an example might be helpful to you %% I take take 3D matrix, here 8 number of page, each page has 11 col...

1 year ago | 0

Answered
directory xxx is not writeable Error
change the target directory to C:\document-->MATLAB

1 year ago | 0

Answered
如何获得图形?
message=[0 1 1 0 1 0 1 ]; data=[message 0] stairs(data); title ('Line Coding1' ); xlabel('Time'); xlim([1,8]); ylabel('Amp...

1 year ago | 0

Answered
How to have a new line inside a string ?
集(handles.parameterW,“字符串”,{['刚度= ',num2str(A)+newline+' Nm/deg,',' Damping = ',num2str(B),' or set(handles.par...

1 year ago | 0

Answered
4维函数的可视化
%%% this might be helpful for you there is four variable gives 4D matrix plot load patients Height Weight Diastolic Systolic ...

1 year ago | 0

Answered
difference between fitcnet and patternnet functions
1. fitnet用于回归(MATLAB称其为曲线拟合),该曲线应该是Newff的替代品)2。PAT的模式网络...

1 year ago | 0

|公认

Answered
How do I create a matrix C that is comprised of values from matrices A and B, using a nested for loop?
C =零(4)a = [2 2 3 4;1 0 1 1;5 2 1 2;-1 2 -1 2];b = [2 3 4 5;-1 0 2 2;7 2 1 4;2 0 1 2];对于i = 1:4 j = 1:...

1 year ago | 0

|公认

Load more