Beantwortet
loop over variable with different characters
This shows, that you have created a bunch of variables and stored important information in the name of the variables. This desig...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Efficient way to assign indices to variables in a matrix
[~, Result] = ismember(A, B(:, 4)); A look up table is even faster: Instead of searching the element A(i,j) in B(:, 4), create ...

fast 4 Jahre vor | 1

Beantwortet
Why sprint doesn't show a zero value from an array?
Reduce the clutter: a=[1:450:2251]; % Easier: a = 1:450:2251; [] is Matlab operator for a concatenation. [1:450:2251] concat...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to interleave data from 2 doubles of differing length?
A=[1420;2956;4492;6028]; B=[2960;3152;3344;3536;3728;3920;4112;4304;4496;4688;4880;5072;5264;5456;5648;5840]; [C, idx] = sor...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Load multiple *.mat files and save outputs using loop without overwriting the previous file
filePattern = fullfile(myFolder, '*.mat'); theFiles = dir(filePattern); nFiles = numel(theFiles); % not size() Out = cell...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to know the exact colour after a level of transparency being applied?
The color you see through a semitransparent element depends on the background. The rule is simple: alpha = rand; % ...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Remove the 1x1 Cell Array from the Cell Array
If you want D{1} = [2, 1], use: D{1} = [2, 1] % or equivalently D = {[2, 1]} Expanded: D = {[2,1], [1,2,0]} D{1} D{2} Ma...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
code no good :(
areaOriginal = area(widthOriginal,thicknessOriginal); This creates a diagram and returns the handle to the graphics object. ar...

fast 4 Jahre vor | 0

Beantwortet
How to treat select elements from within multiple cells as a single vector
C = cell(5, 4); C(:) = {2:5}; % Faster than with DEAL V = cellfun(@(x) x(1,1), C(2:end,1), 'UniformOutput', 1) V = ...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Error while running matlab script from Linux terminal
Is this a script or function? Obviously it is not included in the PATH. So either change the current path or add the folder to t...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Add code to have switch repeat if a case is not met
knownLevels = {'easy', 'medium', 'hard'}; Levels = [10, 50, 100]; fprintf('\nChoose one of the known levels: %s\n', strjo...

fast 4 Jahre vor | 0

Beantwortet
When calling a user defined function, MATLAB throws an error for simple matrix multiplication
Use the debugger to examine the problem: dbstop if error Run your code again afterwards. If it stops at the error, check the d...

fast 4 Jahre vor | 1

Beantwortet
Is it possible to programmatically check whether MATLAB has been started with the "-sd" option?
PID = feature('getpid'); [status, out] = system(sprintf('ps -p %d -o args', PID)) Parsing the char vector out is not trival: E...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Generating a combination matrix within a certain condition
After some test I could simplify the original combvec and including the limit is easy also: % Without limit, but considering th...

fast 4 Jahre vor | 1

Beantwortet
How can I apply filter with loop-based function instaed of using filter( ) : built in MATLAB function?
You can find a Matlab function for filtering here: https://www.mathworks.com/matlabcentral/answers/9900-use-filter-constants-to-...

fast 4 Jahre vor | 0

Beantwortet
Generating a combination matrix within a certain condition
It is easy to modify the code of a copy of Matlab's combvec function, which uses the class of the input: Change the zeros(., .) ...

fast 4 Jahre vor | 1

Beantwortet
How could I possibly iterate over three 3D arrays and use their variable names iteratively in the title and axes?
v_dx = struct('EField_h', EField_h(idx_phi,idx_theta,:), ... 'EField_v', EField_h(idx_phi,idx_theta,:), ... ...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
When I import google sheet into Matlab, I get the first line imported as the url for my google account sign in
If the file starts with <!doctype html><html lang="en-US" dir="ltr"><head> it is an HTML file, not a JSON file. Then jsondeco...

fast 4 Jahre vor | 0

Beantwortet
How to display a single element from a matrix?
Indexing is a fundamental Matlab method. To learn the basics asking in the forum is less efficient than using the tutorials: Ge...

fast 4 Jahre vor | 0

Beantwortet
How can I import multiple fig files into a single figure in a tiled layout?
Using a vector as 3rd input in subplot allows to span an axes over multiple blocks of the layout: FigH = figure; subplot(2, 3,...

fast 4 Jahre vor | 0

Beantwortet
When triying to oppen a .m file instead of the editor oppening, a command prompt appears
Open the section "Editor/Debugger" in Matlab's preferences and select "MATLAB editor" as editor.

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Artefacts when filtering a contiguous signal
The final state of the filter parameters after the 1st block is not the value of the signal. Replace: zi = vec1(end-2:end); % ...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
How can I calculate trapz value based on an event counter and then plot it?
As far as I understand your code was almost working. I added an if condition to skip scalar data and shifted the index for the o...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Polyfit polynomial badly conditioned on Linux whereas on Mac no warnings
The warning is serious. Although the results look find in your case, scaling the input is the way to go for a scientifically sta...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Turn code into function
Instert one line on top: function ANameOfYourchoice and save the file as "ANameOfYourchoice.m".

fast 4 Jahre vor | 0

Beantwortet
Running two very similar scripts, getting different resolution figures when exported.
It looks like one of the figures uses painters and the other one OpenGL as renderer. OpenGL is enabled automatically, if a more ...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
How to generate a specific number of values within a range ?
R = size(Q,1); First_second_ele = zeros(R,2); Y = zeros(R, 60); for k = 1:R tmp = nonzeros(qm(k,:)); %extraction f...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
What is wrong with for loop iteration that is put in a function?
function bool = composite(n) bool = false; % Create a default value if n > 2 for i = 2:n for j = 2:n ...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
How to define a function with multiple handle in a loop?
Is there a need to use an anonymous function? Why not writing a standard function? function y = pA(tau, s1, s2, s3) a=80/365...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
How can i achive this kind of plot?
Go to the FileExchange and search for "radar" or "spider" plots.

fast 4 Jahre vor | 0

| akzeptiert

Mehr laden