Beantwortet
Finding 4 closest values to a value in an array
use mink [~,idx] = mink(abs(data-find_point),5); data(idx)

mehr als 3 Jahre vor | 1

| akzeptiert

Beantwortet
How to get Y-values from X-values?
if you just want the Y value for the nearest point: [~,idx] = min(abs(X-certainX)); certainY = Y(idx); I don't see quite th...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to increase fontsize of matlab IDE?
there is a workaround here that probably still works: https://www.mathworks.com/matlabcentral/answers/233543-how-to-change-the-...

mehr als 3 Jahre vor | 0

Beantwortet
Can you plot polarplots so that theta zero location is at any arbitrary angle or are top left bottom right the only options?
something like this: top_angle = 24; % get current labels tt = thetaticks; % rotate angles so top_angle takes place of 90 t...

mehr als 3 Jahre vor | 0

Beantwortet
How to plot many curves on a x-y-x axis system
sounds like plot3 is what you want, though I'll warn you that getting readable figures out is more an art than a science

mehr als 3 Jahre vor | 0

Beantwortet
How do I display the first 20 numbers of the Fibonacci sequence?
you need to define the first two numbers manually, then start on the third f(1) = 0; f(2) = 1; for a=3:20 ... Also, it's un...

mehr als 3 Jahre vor | 0

Beantwortet
Convert a non uniform cell array of cell arrays to matrix
(see comments on question for details not related to the title question) A1 = cell2mat(runData_struc{1}); A2 = cell2mat(runDat...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Preallocating a variable that changes size every for loop iterations.
It's just a code suggestion, you can safely ignore it.

mehr als 3 Jahre vor | 0

Beantwortet
Saying Else is invalid syntax
you have two else's for the same if. Select it all and hit CTRL-i to smart indent to see: function [d1,d2,d] = dotangle(u,v) m...

mehr als 3 Jahre vor | 0

Beantwortet
Histogram with many data
Use tall arrays: https://www.mathworks.com/help/matlab/import_export/tall-arrays.html

mehr als 3 Jahre vor | 0

Beantwortet
Data Cleansing in Tables
test_rejoined = outerjoin(test(:,[1 3 4]),test(:,[2 5]),'LeftKeys','id2','RightKeys','id','MergeKeys',true); separate table int...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Fitting and smoothing the noisy curve
check out smoothdata and this guide

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Row unity in matrix
P_norm = P./sum(P,2);

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Hi, I am asking the user for input and the input should be either "AA" "Aa" or "aa". How can I validate the input using a while loop? I don't think my code works.Thanks!
You're requiring that it be all valid entries simultaneously parentOneA = input("Enter Parent 1's A Trait: ") % Error checking...

mehr als 3 Jahre vor | 0

Beantwortet
Im putting in my equations wrong and i need help
should that be T1? also, replace 25 hardcoding with v0 (and 30 with T1) d1= (v0.*cosd(T2)/g).*((v0.*sind(T2))+sqrt((v0.*sind(T2...

mehr als 3 Jahre vor | 0

Beantwortet
sub2ind gives error: Error using sub2ind (line 73) Out of range subscript.
sim_i_r was valid indices (integers greater than zero), but you changed it to invalid ones (zeros, decimals, negatives). Matlab ...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Index daily values in TT over many years to determine mean
This will create a table with the average for each day of the year (1-366). 'dayofmonth' might be preferable for just July data ...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
While starting Matlab icon on desktop, it is throwing error matlab.exe is moved or deleted.
delete the Matlab icon on your desktop type "Matlab" into your Start Menu search The top result should be the Matlab app/progr...

mehr als 3 Jahre vor | 0

Beantwortet
Plot bar chart with log scale on y axis with different base
% set whatever base you want (incl. decimals) mybase = 2; % get current limits yl = ylim(); % convert to log-mybase scale y...

mehr als 3 Jahre vor | 0

Beantwortet
What frustrates you about MATLAB? #2
Livescript complaints First off, they've come a long way since I tried them on release. But, there are still some issues: Drop...

mehr als 3 Jahre vor | 1

Beantwortet
How to store a matrix, A, in variable X, where X is also carrying a counter "i"
Simple way: add a third dimension, "pages": X(:,:,i) = A; But, if you only need the last iteration, it's better to store jus...

mehr als 3 Jahre vor | 0

Beantwortet
Permutations of array retaining sub-array groups together
I believe the best way to describe your arrays-with-subgroups is using cell arrays: my_array = {1 [2 3] 4} my_array = {...

mehr als 3 Jahre vor | 1

Beantwortet
Does MATLAB have functionality similar to Mathematica's Import function to import html tables?
check out htmlTableToCell on the file exchange, followed by cell2table

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Random shuffle of image pixels/ Image scrambling
You can use randperm to shuffle the indices randomly, then sort to get the indices for reversing it: % load in an image include...

mehr als 3 Jahre vor | 0

Beantwortet
Nested loops and function output into a matrix inconsistency
It seems like your 'w' columns are supposed to correspond to q-r pairs. Currently, this isn't happening, so each q-r pair will f...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to write special characters into an Excel cell?
If you can find the numeric code for the symbols, it should print with that. For example, this prints π | ϕ | μmol/kg T1.Proper...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Adding a unit row to a table
% create example table T = array2table(magic(3),"VariableNames",["a";"b";"c"]); % define units T.Properties.VariableUnits = [...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Changing empty array for peak width to zero
% preallocate default values pks1 = nan(25,1); loc1 = nan(25,1); width1 = zeros(25,1); prom1 = nan(25,1); for i=1:25 [...

mehr als 3 Jahre vor | 0

Beantwortet
How to select matrix column from minimum row value
distance_to_point = [2, 3, 4, 5; 6.8, 2.9, 6.1, 6.7] [~,idx] = min(distance_to_point(2,:)); new_point = distance_to_point(:,id...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Aquire random sampling of plot values
Assuming your two datasets share x values and are not absurdly massive, this direct method is probably faster % generate some s...

mehr als 3 Jahre vor | 0

Mehr laden