photo

Benjamin Großmann


Last seen: oltre 4 anni fa Attivo dal 2016

Followers: 0   Following: 0

Traffic Engineer

Statistica

All
MATLAB Answers

0 Domande
60 Risposte

File Exchange

2 File

Cody

0 Problemi
8 Soluzioni

ThingSpeak

1 Pubblico Canale

RANK
994
of 301.533

REPUTAZIONE
78

CONTRIBUTI
0 Domande
60 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
13

RANK
4.389 of 21.316

REPUTAZIONE
331

VALUTAZIONE MEDIA
5.00

CONTRIBUTI
2 File

DOWNLOAD
17

ALL TIME DOWNLOAD
2274

RANK
42.382
of 175.212

CONTRIBUTI
0 Problemi
8 Soluzioni

PUNTEGGIO
103

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
1 Pubblico Canale

VALUTAZIONE MEDIA
30

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • 5-Star Galaxy Level 4
  • Knowledgeable Level 3
  • Revival Level 1
  • Personal Best Downloads Level 2
  • 3 Month Streak
  • MATLAB Central Treasure Hunt Finisher
  • First Submission
  • Knowledgeable Level 2
  • First Answer
  • Solver

Visualizza badge

Feeds

Risposto
How can I save a UIaxes-figure in a Matlab-Web-App by button callback
You can use exportgraphics(obj,filename) to write a graphics object obj to filename on the web app server temporarily. Afterward...

oltre 4 anni fa | 0

Risposto
What MATLAB functions are underappreciated?
arguments declaration within functions, introduced in 2019b, is very powerful (pythonic? ;-)) for writing generic and reusable f...

quasi 5 anni fa | 0

Risposto
Batch input for image preprocessing and KNN classification
You could do one of these three things (incomplete list): Use an imageDatastore object for your image collection and the ReadF...

quasi 5 anni fa | 0

| accettato

Risposto
how to plot 2D contour lines from the data file
contour(x, y, z) gives you the contour plot, z is the intensity value Contour plot of matrix - MATLAB contour EDIT: To create...

quasi 5 anni fa | 0

Risposto
How to merge two matrixes by position vector?
Maybe this works. Hard to tell because the randi images are not so comparable to your image. Basic idea is to combine the coord...

quasi 5 anni fa | 0

Risposto
How to write a function that utilizes unit vectors?
If you can calculate the vector components (i.e. directions) than you only have to arrange them into an array. Suppose that you ...

quasi 5 anni fa | 1

| accettato

Risposto
Same code line works outside but not inside for loop.
The problem is, that the xlsx file contains protected spaces ( char(160) ) and you are comparing to normal spaces. Quick and v...

quasi 5 anni fa | 0

| accettato

Risposto
How to load and and open multiple files in one loop?
I do not see the definition of Ftarget1ref. Moreover, the variable "filename" is overwritten in every step of the for loop. I r...

quasi 5 anni fa | 0

| accettato

Risposto
Trying to build an app for user to define dimensions for a m*n grid that can tell the app to automatically make the dimensions of check boxes that were requested.
In app designer add two "edit field (numeric)", name the first one editN and the second one editM. Next, add a button, named "Bu...

quasi 5 anni fa | 0

| accettato

Risposto
how to add variable to array
Okay, maybe I understood the problem: If you have an array of PPG and ECG values and a constant fs you could do something like:...

quasi 5 anni fa | 0

Risposto
show a digit matrix with segmentation line
matrix = [ 1 1 1 1 2 2 2 2; 1 1 1 2 2 2 2 2; 3 3 3 3 3 2 2 2; 3 3 3 3 3 3 3 3]; heatmap(matrix, 'Colormap', [1 0 0; ...

quasi 5 anni fa | 0

Risposto
Finding the maximum time of ode45
The max function is able to output the index of the max value: [ymax, idx_max] = max(abs(y)) tmax = t(idx_max)

quasi 5 anni fa | 0

| accettato

Risposto
Question regarding strange outputs from histogram plot
If you do not provide any code, it is hard to tell what went wrong here. If I use your image, everything looks fine: imageURL =...

quasi 5 anni fa | 0

| accettato

Risposto
How can I save the output in a loop to an external text file?
There are a few problems inside your loop. In each step you set m equal to zero and increment it to one. So m is not growing as ...

quasi 5 anni fa | 0

| accettato

Risposto
How to plot this equation?
I assume that p is a dependent variable (pressure?), r is radius (spatial), and t is time (temporal). With this assumption, you ...

quasi 5 anni fa | 0

Risposto
Source and Target to simmetrical adjacency matrix
Use graph(source, target) for undirected graph or digraph(source, target) for directed graph to define a graph. I assume you hav...

quasi 5 anni fa | 1

Risposto
How to recover check box value?
get(chkBox, 'Value') as well as chkBox.Value should work with visible and invisible uifigures equally. % Create invisible uifig...

quasi 5 anni fa | 1

Risposto
Removing values from plot and applying curve
You can remove values from an array by setting them to empty. Use logical indexing to address the values that you want to delete...

quasi 5 anni fa | 0

| accettato

Risposto
Merging pdf without ghostscript
Four years later ... I contributed a tiny function to FEX to merge multiple pdfs without third party tools: mergePdfs - File Ex...

circa 5 anni fa | 4

Risposto
Multiple plots to one pdf
Save each figure to one pdf-Document (using print, exportgraphics, ...) and try out my new FEX submission to merge the pdf-docu...

circa 5 anni fa | 0

Risposto
SIMILAR COMMANDS FOR CREATING .TXT FILES
You can use dlmwrite to write an array into a text file and specify the delimiter or use fprintf to have more control about the ...

quasi 6 anni fa | 0

Risposto
Save a .FIG as .JPG (syntax error?)
To save a jpg with saveas() you have to give a proper figure handle (at least gcf) as first argument and change '.jpg' to 'jpeg'...

quasi 6 anni fa | 1

| accettato

Risposto
deleting a part of a column - date to date??
clearvars close all clc % lets create the date column (I only use 1 hour with increment of 1 minute), but this should works...

circa 6 anni fa | 0

| accettato

Risposto
How to create a confusion matrix.
Lets use the cifar10 demo included in Matlab for your question clearvars close all clc load('Cifar10Labels.mat','trueLabel...

circa 6 anni fa | 0

Risposto
How to detect the black line from a captured image?
If you print it out and make a photo, then black is not pure black any more but some kind of grayish or with some kind of color ...

circa 6 anni fa | 0

Risposto
plot Datetime on x Axes
There are mainly 2 possibilities You can use datetick() to format your x axis ticks to date or time values You can define your...

circa 6 anni fa | 0

| accettato

Risposto
Run a script for all subfolders
You can use the asterisk (*) as wildcard to generate a file pattern and the dir command to get a struct of all the matching file...

circa 6 anni fa | 1

| accettato

Risposto
How to write this matlab code?
In Matlab, you could write something like B = rand(8760, 30); % matrix B of size 8760x30 with random values P = rand(30, 1); %...

circa 6 anni fa | 0

Risposto
Help!!! How to browse text file data to another function
It seems that you access the value of the button, which is not what you intend to do. What you probably want to do is to share d...

circa 6 anni fa | 0

Risposto
i want to generate a sequence of n numbers
You can create sequences with the colon operator (:), for exapmle v = [4:2:100]; creates v = [4, 6, 8, ... , 100] with values ...

circa 6 anni fa | 1

| accettato

Carica altro