
MATLAB
Spoken Languages:
English
Statistics
RANG
183
of 273 154
RÉPUTATION
554
CONTRIBUTIONS
16 Questions
253 Réponses
ACCEPTATION DE VOS RÉPONSES
87.5%
VOTES REÇUS
54
RANG
of 18 447
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Content Feed
How can I get the linear indices of the 4 maximum values of an array?
A = [1 2 3 10 8 9 7 4 5 6]; [B,Idx]=maxk(A,4)
environ 24 heures il y a | 2
| A accepté
use parentheses. Otherwise, check for mismatched delimiters.
use the parentheses at the end of syntax. k=(str2num(N1)/str2num(N2)*str2num(s1)/str2num(s2)*str2num(slope1)/str2num(slope2)^(...
2 jours il y a | 1
| A accepté
Why do I get "Array indices must be positive integers or logical values" error?
try this: lc= 0.03; b=0.013; Rc= 0.0275; theta1= 0:15:360; theta2=theta1*pi/180; x=lc/2; y=((Rc^2)*(theta2)); z=((b^2)*0...
2 jours il y a | 0
How do I remove a value from a column, but keep the rest?
Try this. If there is any issue, please upload your data. Add and Delete Table Rows load patients T = table(LastName,Gender,A...
4 jours il y a | 0
Picking array elements based their values (largest, second largest,...)
Y=[1 1 0 0 6 5 4 7 7]; a=unique(Y); [ii,ij] = sort(a,'descend'); Largest=ii(1) second_largest=ii(1+1) third_largest=ii(1+2)...
6 jours il y a | 0
| A accepté
How to rearrange matrix columns?
A=[0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0...
7 jours il y a | 0
| A accepté
How i creat Costomer fscanf?
use readtable function a=readtable("sol2.txt");
8 jours il y a | 1
How to prepare extract monthly Data from a group of data?
a=table2array(readtable("AO_1950_2022.xlsx")); b=a(:,2)==2; febmonth=a(b,[1 3]);
8 jours il y a | 0
Not enough input arguments (line 2)
x=12:10:42; out=nonsense(x); function y=nonsense(x) if mod(x,2) == 0 y=x.^2; else y=0; end disp(y) end
8 jours il y a | 1
How to have function window show over command window?
Click the little 'downward pointing triangle' on the right top of title bar. Then select the "dock" option. https://www.mat...
8 jours il y a | 0
A résolu
Make roundn function
Make roundn function using round. x=0.55555 y=function(x,1) y=1 y=function(x,2) y=0.6 y=function(x,3) ...
9 jours il y a
How to import a dataset in .mat file for data pre-processing?
a=load('your mat file.mat');
12 jours il y a | 0
| A accepté
read data from csv
use readtable function a=readtable("0.csv","ReadVariableNames",false);
20 jours il y a | 0
Insert NaN into specific values
try this: s=load('spi_dca.mat'); spi_dca = s.spi_dca; col4=spi_dca(:,4); col4(col4==0)=NaN; output=[spi_dca(:,[1 2 3]),col4...
25 jours il y a | 0
| A accepté
My function won't accept the vector
You can not specify 0 as an index x = 0:1:10; f = x.^2-x-1
25 jours il y a | 1
| A accepté
stacked figure from text file
A=horzcat((1:10)',randi(20,10,1),randi(100,10,1)); figure(4); plot (A(:,1),A(:,2),'-o', 'LineWidth',1, 'Color', [0 0.4470 0.74...
environ un mois il y a | 0
| A accepté
Finding index in a set
one approach: x1 = [0 , 0, 1, 0]; x2 = [0, 0, 0, 0]; % [value I]=find(x1==1); b=perms(x1); [row,col,v] = find(b(:,3)); b(r...
environ 2 mois il y a | 0
How to get back real value after rounding
a=[3.3 0.5]; round_vector=round(a) c=a-round_vector; origin_vector=round_vector+c
environ 2 mois il y a | 0
Having this problem second time can anyone help?
a=1.1; b=0.09; % x(1)=1.16; % x(2)=1.32; % x(3)=1.47; % x(4)=1.65; % x(5)=1.93; x=[1.16;1.32;1.47;1.65;1.93]; % y=(l...
environ 2 mois il y a | 0
Removing Variables From a Cell Array
x = {2 4 3+5*1i NaN 6 9.8 'Hello' 11 -3 -4+6*1i}; x(cellfun(@(x) any(isnan(x)),x)) = [] y = {NaN NaN -7 8 0 4.5 1i 15 'how are...
environ 2 mois il y a | 0
Assembling Global Stiffness Matrix
% creating stiff matrix for i=1:20 stiff{i}=randi(100,4,4); end k1=stiff(1); k2=stiff(2); k3=stiff(3); k4=stiff(4);...
environ 2 mois il y a | 0
How do I average columns in cell array if some cells are empty?
you are asking the same question several times. your cell array "new_mat". giving an answer to your previous question: https://...
environ 2 mois il y a | 0
How do I convert a cell array with multiple values per cell into a numerical array with multiple rows?
The dimension of the 4th Column of your cell array is 4x1, but the rest of your cell array is 5x1. a=load("split_newdata_mean.m...
environ 2 mois il y a | 0
| A accepté
Insert numeric values (rx1 matrix) inside a cell
a=randi(100,157,2); b=randi(200,189,2); c=randi(300,183,2); mat={a;b;c} % making a cell array % rep = repmat(100,157,1); m...
environ 2 mois il y a | 0
| A accepté
How to locate the index of a certain date for a date-time array?
I don't have your data. try this one: % creating datetime data from 1st January 2017 to 31 December 2017 firstdate = '01-01-20...
environ 2 mois il y a | 0
How to import odd and even rows from a more than one txt file ?
try this: textfiles = dir('*.txt'); numfiles = length(textfiles); mydata = cell(1, numfiles); for k = 1:numfiles mydata...
environ 2 mois il y a | 0
How to remove empty space after legend?
you can change your lengend location to "northwest" or "Southeast" legend(LegendInfo, 'Location', 'northwest', 'fontname', 'Tim...
environ 2 mois il y a | 0
Finding a value of one vector based on the nonzero values of another vector
A = [2 5 1 4]; B = [0 1 0 1]; [I C]=find(B==1); output=A(C)
environ 2 mois il y a | 0
[Ask Help] - Convert Negative Commas Decimal into Single Binary
data = [1.295175 -0.021158 -0.274017]; data(data<0)=0; data(data>1)=1
environ 2 mois il y a | 0
| A accepté
Black Jack input and output
try this: a=[9 13]; output_1=check_possibilities(a) b=[23 34]; output_2=check_possibilities(b) c=[9 20 19 22]; output_3=ch...
environ 2 mois il y a | 0